I came across an interesting scenario. I have a class in C #:
public class Test
{
public int A;
public int a;
}
Since C # is case sensitive, it will handle the two variables Aboth Aas different. I want to inherit the above class in my VB code, which is not case sensitive. How will VB code access two different variables Aand A?
Any help is appreciated.
source
share