Files
linux-packaging-mono/mcs/class/System.Core/System.Linq.Expressions/LambdaExpression.NotSupported.cs

14 lines
410 B
C#
Raw Normal View History

using System;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
namespace System.Linq.Expressions {
public partial class LambdaExpression {
public void CompileToMethod (MethodBuilder method) => throw new PlatformNotSupportedException ();
public void CompileToMethod (MethodBuilder method, DebugInfoGenerator debugInfoGenerator) => throw new PlatformNotSupportedException ();
}
}