lambda 傳遞ref參數有個語法bug,必須要顯式書寫參數類型。 //如 delegate bool FuncType(ref int num); FuncType func1; func1 = num => true; //錯 func1 = (ref num) => true;//錯 fun... ...
lambda 傳遞ref參數有個語法bug,必須要顯式書寫參數類型。
//如 delegate bool FuncType(ref int num); FuncType func1; func1 = num => true; //錯 func1 = (ref num) => true;//錯 func1 = (ref int num) => true;//ok //並且,當一個參數書寫類型,其他參數也要書寫,總之很煩。