C#的类类似于指针

来源:互联网 发布:js cookie存储时间 编辑:程序博客网 时间:2024/05/28 14:56
public static void TestFun(CTestClass tc)
{
tc.Val = 100;
}

public class CTestClass
{
public int Val;
}


CTestClass tc = new CTestClass();
TestFun(tc);

tc被改成了100
0 0