lambda 怎麼傳遞ref參數

lambda 傳遞ref參數有個語法bug,必需要顯式書寫參數類型。spa

//
delegate bool FuncType(ref int num);

FuncType func1;
func1 = num => true; //
func1 = (ref num) => true;//
func1 = (ref int num) => true;//ok

//而且,當一個參數書寫類型,其餘參數也要書寫,總之很煩。
相關文章
相關標籤/搜索