System.Linq.Expressions.NewValueTypeExpression.NewValueTypeExpression C# (CSharp) Méthode

NewValueTypeExpression() private méthode

private NewValueTypeExpression ( Type type, ReadOnlyCollection arguments, ReadOnlyCollection members ) : System.Collections.Generic
type System.Type
arguments ReadOnlyCollection
members ReadOnlyCollection
Résultat System.Collections.Generic
        internal NewValueTypeExpression(Type type, ReadOnlyCollection<Expression> arguments, ReadOnlyCollection<MemberInfo> members)
            : base(null, arguments, members)
        {
            Type = type;
        }
NewValueTypeExpression