这是我的方法:
public static bool ValidateAddressCount(ref long o_addressCount)
{
// o_addressCount is modified here
//return true or false
}
当我不在乎方法返回什么时,我遇到了一些情况,我只需要 o_adressCount 以下列方式使用此方法是否是一个好习惯:
long addressCount = 0;
ValidateAddressCount(ref addressCount); //without assigning the returned value to any variable
//use address count
另外,谁能解释为什么这在.net中有效?
谢谢