大家好,我想问一下为什么c#中要定义一个方法,或者说方法为什么要定义在类中
答案:1 悬赏:20 手机版
解决时间 2021-03-23 13:48
- 提问者网友:棒棒糖
- 2021-03-22 21:32
大家好,我想问一下为什么c#中要定义一个方法,或者说方法为什么要定义在类中
最佳答案
- 五星知识达人网友:神的生死簿
- 2021-03-22 22:28
public class aa
{
public int x;
public List y = new List();
}
public class bb
{
public string g;
public string h;
}
写测试
private void Method()
{
aa A = new aa();
A.x = 1;
bb B = new bb();
B.g = "G";
B.h = "H";
A.y.Add(B);
MessageBox.Show("A.x =" + A.x.ToString() + " B.g=" + B.g + " B.h=" + B.h);
}
{
public int x;
public List y = new List();
}
public class bb
{
public string g;
public string h;
}
写测试
private void Method()
{
aa A = new aa();
A.x = 1;
bb B = new bb();
B.g = "G";
B.h = "H";
A.y.Add(B);
MessageBox.Show("A.x =" + A.x.ToString() + " B.g=" + B.g + " B.h=" + B.h);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯