lambda 传递ref参数有个语法bug,必须要显式书写参数类型。
//如delegate bool FuncType(ref int num);FuncType func1;func1 = num => true; //错func1 = (ref num) => true;//错func1 = (ref int num) => true;//ok//并且,当一个参数书写类型,其他参数也要书写,总之很烦。
本文共 254 字,大约阅读时间需要 1 分钟。
lambda 传递ref参数有个语法bug,必须要显式书写参数类型。
//如delegate bool FuncType(ref int num);FuncType func1;func1 = num => true; //错func1 = (ref num) => true;//错func1 = (ref int num) => true;//ok//并且,当一个参数书写类型,其他参数也要书写,总之很烦。
转载于:https://www.cnblogs.com/Nobel/p/6361145.html