LambdaExpression.cs 320 B

1234567891011121314151617
  1. #if FEATURE_COMPILE_TO_METHODBUILDER
  2. using System.Reflection.Emit;
  3. using System.Runtime.CompilerServices;
  4. namespace System.Linq.Expressions
  5. {
  6. partial class LambdaExpression
  7. {
  8. public void CompileToMethod (MethodBuilder method, DebugInfoGenerator debugInfoGenerator)
  9. {
  10. CompileToMethod (method);
  11. }
  12. }
  13. }
  14. #endif