Inheritance: TpmStructureBase
示例#1
0
 ///<param name = "the_algProperties">list of properties</param>
 public AlgPropertyArray(
 AlgProperty[] the_algProperties
 )
 {
     this.algProperties = the_algProperties;
 }
示例#2
0
 public AlgProperty(AlgProperty the_AlgProperty)
 {
     if((Object) the_AlgProperty == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     alg = the_AlgProperty.alg;
     algProperties = the_AlgProperty.algProperties;
 }