Files
2026-08-27 10:56:38 -06:00

17 lines
374 B
C#

namespace Microsoft.CodeAnalysis.CSharp;
internal enum LambdaConversionResult
{
Success,
BadTargetType,
BadParameterCount,
MissingSignatureWithOutParameter,
MismatchedReturnType,
MismatchedParameterType,
RefInImplicitlyTypedLambda,
StaticTypeInImplicitlyTypedLambda,
ExpressionTreeMustHaveDelegateTypeArgument,
ExpressionTreeFromAnonymousMethod,
BindingFailed
}