C#将对象作为参数传递到其他方法
提问人:刘冬梅发布时间:2020-10-13
public class Test1
{
public string str = "aaa";
public void f(Test1 test)
{
str = "bbb";
Console.WriteLine(test.str);
}
public void f1()
{
f(this);
}
public static void Main()
{
Test1 test = new Test1();
test.f1();
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>