ApiExamples.ExNestedMailMergeCustom.Order.Order C# (CSharp) Method

Order() public method

public Order ( string oName, int oQuantity ) : System.Collections
oName string
oQuantity int
return System.Collections
            public Order(string oName, int oQuantity)
            {
                this.mName = oName;
                this.mQuantity = oQuantity;
            }
ExNestedMailMergeCustom.Order