示例#1
0
 public static Expression New(params Expression[] Terms)
 {
     return(Multiply.New(Terms));
 }
示例#2
0
 /// <summary>
 /// Create a new product expression in canonical form.
 /// </summary>
 /// <param name="Terms">The list of terms in the product expression.</param>
 /// <returns></returns>
 public static Expression New(IEnumerable <Expression> Terms)
 {
     return(Multiply.New(Terms));
 }