Ejemplo n.º 1
0
 public SmartValue(DataFormatterBase dataFormatter)
     : base(dataFormatter, new byte[0])
 {
     if (dataFormatter.GetMaxLength() != -1)
     {
         Value = new byte[dataFormatter.GetMaxLength()];
     }
 }