C#中如何调用别的类中的数组
publicvoidaccont(){varcustmer=new[]{new{ID=12345,Password=12345,balance=30000},new{ID...
public void accont()
{
var custmer = new[] { new {ID= 12345, Password = 12345, balance=30000 }, new { ID = 56789, Password = 56789 ,balance=10000} };
}
public void balanceOfSelct()
{
}
怎么在 balanceOfSelct()中调用accont()中数组的数据 展开
{
var custmer = new[] { new {ID= 12345, Password = 12345, balance=30000 }, new { ID = 56789, Password = 56789 ,balance=10000} };
}
public void balanceOfSelct()
{
}
怎么在 balanceOfSelct()中调用accont()中数组的数据 展开
展开全部
又一个没人回答的问题,,,
1.你这个不是别的类中;分明是一个类中两个方法。
2.方法之间没法调用局部变量。
3.类中的类成员变量可以用 类名.变量 赋值,调用。
4.根据你想要的效果,你完全可以写成:
public class a // 类a
{
private string _userID;
private string _userPassword;
private int _balance;
public string userID
{
set{ _userID=value; }
get{ return _userID; }
}
**************
}
public class abc,,,//其他类赋值调用
{
a objA1= new a();
objA1. userID=12345;
objA1.userPassword=12345;
objA1.balance=30000;
a objA2 = new a();
objA2. userID=56789;
objA2.userPassword=56789;
objA2.balance=10000;
************
.....
}
1.你这个不是别的类中;分明是一个类中两个方法。
2.方法之间没法调用局部变量。
3.类中的类成员变量可以用 类名.变量 赋值,调用。
4.根据你想要的效果,你完全可以写成:
public class a // 类a
{
private string _userID;
private string _userPassword;
private int _balance;
public string userID
{
set{ _userID=value; }
get{ return _userID; }
}
**************
}
public class abc,,,//其他类赋值调用
{
a objA1= new a();
objA1. userID=12345;
objA1.userPassword=12345;
objA1.balance=30000;
a objA2 = new a();
objA2. userID=56789;
objA2.userPassword=56789;
objA2.balance=10000;
************
.....
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询