如果我要创建一个匿名委托,例如:
var x = new Func(x => x != null)
结果是什么:
x.Method.FullName
它遵循什么样的命名约定?
如果我要创建一个匿名委托,例如:
var x = new Func(x => x != null)
结果是什么:
x.Method.FullName
它遵循什么样的命名约定?
据我所知,命名约定类似于'method'__b'num',其中'method'是声明匿名方法的方法,'num'是数字标识符。
查看http://www.codeproject.com/Articles/149929/Under-the-hood-of-anonymous-methods-in-C