I just came across an interesting scenario. I have a class in C#:
public class Test
{
public int A;
public int a;
}
As C# is case sensitive, this will treat the two variables A
and a
as distinct. I want to inherit the above class in my VB code, which is not case sensitive. How will the VB code access the two distinct variables A
and a
?
Any help is appreciated.