在A类中(如果列表不为空,将输出什么):
private List<int> _myList = new List<int>
public List<int> MyList {get{return _myList;} set{_myList = value;}}
B类:
public bool MyClassBMethod(stuff)
{
//stuff
try{
something
}
catch(Exception){
ClassA.MyList.Add(stuff);
return false;
}
return true;
}
像这样编辑列表是不好的做法吗?或者没关系?
编辑:我只在我的方法需要返回其他内容(布尔、对象、字符串等)时才添加到列表中。