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 //而且,當一個參數書寫類型,其餘參數也要書寫,總之很煩。