///<param name = "the_algProperties">list of properties</param> public AlgPropertyArray( AlgProperty[] the_algProperties ) { this.algProperties = the_algProperties; }
public AlgProperty(AlgProperty the_AlgProperty) { if((Object) the_AlgProperty == null ) throw new ArgumentException(Globs.GetResourceString("parmError")); alg = the_AlgProperty.alg; algProperties = the_AlgProperty.algProperties; }