System.Linq.Expressions.GotoExpression.GotoExpression C# (CSharp) Метод

GotoExpression() приватный Метод

private GotoExpression ( GotoExpressionKind kind, LabelTarget target, Expression value, Type type ) : System.Diagnostics
kind GotoExpressionKind
target LabelTarget
value Expression
type Type
Результат System.Diagnostics
        internal GotoExpression(GotoExpressionKind kind, LabelTarget target, Expression value, Type type)
        {
            Kind = kind;
            Value = value;
            Target = target;
            Type = type;
        }