我有以下方法C#作爲參數方法,其中方法包括裁判paramater
public static void Method1(ref List<int> list)
{//code to update list}
是否有可能創建一個採用此方法類似(但不是行動<清單參數的方法>它使用Action <裁判名單>)
public static void Method2(Action<List<int>> otherMethod)
{var newList = new List<int>(); otherMethod(newList)}
我的主要問題是,我的方法使用的參考,同時操作>不採取引用。這可能嗎?
哦,我很樂意看到Method1'的'再執行剖析爲什麼最有可能的'ref'我們完全沒有必要...... –