匿名代表命名约定

时间:2012-06-21 07:47:07

标签: c# .net reflection delegates

如果我要创建一个匿名代表,例如:

  var x = new Func(x => x != null)

结果是什么:

  x.Method.FullName

它遵循什么样的命名约定?

1 个答案:

答案 0 :(得分:2)

据我所知,命名约定类似于'method'__ b'num' 其中'method'是声明匿名方法的方法,'num'是数字标识符。

查看http://www.codeproject.com/Articles/149929/Under-the-hood-of-anonymous-methods-in-C