Example #1
0
 public StorableAttribute(String name, StorableDataType dataType, StorableInfo info)
 {
     this.name = name;
     this.dataType = dataType;
     this.info = info;
 }
Example #2
0
 public StorableAttribute(String name, StorableDataType dataType)
     : this(name, dataType, StorableInfo.Default)
 {
 }