System.Linq.Expressions.GotoExpression
namespace System.Linq.Expressions
{
public sealed class GotoExpression : Expression
{
public GotoExpressionKind Kind { get; }
public LabelTarget Target { get; }
public Expression Value { get; }
public GotoExpression Update(LabelTarget target, Expression value);
}
}