C#写的一个简单类
public class test
{
public int a;
public int A;
public int b
{
get;
set;
}
public int B
{ get; set; }
public int C;
}
为什么用vb.net只能调到C这个字段,其它的全部不行呢
Sub Main()
Dim t As New ConsoleApplication1.test
Console.WriteLine(t.ToString())
t.
Console.Read()
End Sub