상속: TpmStructureBase
예제 #1
0
 ///<param name = "the_tpmProperty">an array of tagged properties</param>
 public TaggedTpmPropertyArray(
 TaggedProperty[] the_tpmProperty
 )
 {
     this.tpmProperty = the_tpmProperty;
 }
예제 #2
0
 public TaggedProperty(TaggedProperty the_TaggedProperty)
 {
     if((Object) the_TaggedProperty == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     property = the_TaggedProperty.property;
     value = the_TaggedProperty.value;
 }