Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetLambdaName()

string System.Linq.Expressions.DebugViewWriter.GetLambdaName ( LambdaExpression lambda)
inlineprivate

Definition at line 1132 of file DebugViewWriter.cs.

1133 {
1134 if (string.IsNullOrEmpty(lambda.Name))
1135 {
1136 return "#Lambda" + GetLambdaId(lambda);
1137 }
1138 return GetDisplayName(lambda.Name);
1139 }
static string GetDisplayName(string name)

References System.Linq.Expressions.DebugViewWriter.GetDisplayName(), and System.Linq.Expressions.DebugViewWriter.GetLambdaId().