mscorlib(4.0.0.0) API with additions
GotoExpressionKind.cs
2 {
4  [global::__DynamicallyInvokable]
5  public enum GotoExpressionKind
6  {
8  [global::__DynamicallyInvokable]
9  Goto,
11  [global::__DynamicallyInvokable]
12  Return,
14  [global::__DynamicallyInvokable]
15  Break,
17  [global::__DynamicallyInvokable]
18  Continue
19  }
20 }
A "go to" expression, such as goto Label in C# or GoTo Label in Visual Basic.
A T:System.Linq.Expressions.GotoExpression that represents a return statement.
A T:System.Linq.Expressions.GotoExpression that represents a continue statement.
GotoExpressionKind
Specifies what kind of jump this T:System.Linq.Expressions.GotoExpression represents.