System.Linq.Expressions.NewValueTypeExpression.NewValueTypeExpression C# (CSharp) Method

NewValueTypeExpression() private method

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