17 lines
374 B
C#
17 lines
374 B
C#
namespace Microsoft.CodeAnalysis.CSharp;
|
|
|
|
internal enum LambdaConversionResult
|
|
{
|
|
Success,
|
|
BadTargetType,
|
|
BadParameterCount,
|
|
MissingSignatureWithOutParameter,
|
|
MismatchedReturnType,
|
|
MismatchedParameterType,
|
|
RefInImplicitlyTypedLambda,
|
|
StaticTypeInImplicitlyTypedLambda,
|
|
ExpressionTreeMustHaveDelegateTypeArgument,
|
|
ExpressionTreeFromAnonymousMethod,
|
|
BindingFailed
|
|
}
|