Microsoft.Scripting.MutableTuple.Create C# (CSharp) Méthode

Create() public static méthode

Provides an expression for creating a tuple with the specified values.
public static Create ( ) : Expression
Résultat Expression
        public static Expression Create(params Expression[] values) {
            return CreateNew(MakeTupleType(ArrayUtils.ConvertAll(values, x => x.Type)), 0, values.Length, values);
        }