9 references to Goto
System.Linq.Expressions (9)
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
689GotoExpressionKind.Goto => "goto",
System\Linq\Expressions\GotoExpression.cs (8)
261/// A <see cref="GotoExpression"/> with <see cref="GotoExpression.Kind"/> equal to <see cref="GotoExpressionKind.Goto"/>, 267return MakeGoto(GotoExpressionKind.Goto, target, null, typeof(void)); 276/// A <see cref="GotoExpression"/> with <see cref="GotoExpression.Kind"/> equal to <see cref="GotoExpressionKind.Goto"/>, 283return MakeGoto(GotoExpressionKind.Goto, target, null, type); 292/// A <see cref="GotoExpression"/> with <see cref="GotoExpression.Kind"/> equal to <see cref="GotoExpressionKind.Goto"/>, 298return MakeGoto(GotoExpressionKind.Goto, target, value, typeof(void)); 309/// A <see cref="GotoExpression"/> with <see cref="GotoExpression.Kind"/> equal to <see cref="GotoExpressionKind.Goto"/>, 316return MakeGoto(GotoExpressionKind.Goto, target, value, type);