Exemplo n.º 1
0
 public FieldInfo(string key, BinnaryDataType binnaryType, object value)
 {
     this.key         = key;
     this.binnaryType = binnaryType;
     this.value       = value;
 }
Exemplo n.º 2
0
 public FieldInfo(string key, object value)
 {
     this.key         = key;
     this.binnaryType = BinnaryDataType.Null;
     this.value       = value;
 }