示例#1
0
 /// <summary>
 /// Creates a new instance of the BigDecimal data type, from the deserialization data.
 /// </summary>
 /// <param name="data">Binary data as provided by the server's response.</param>
 public VoltDecimal(byte[] data)
 {
     this.Value = BigDecimal.FromBytes(data, 12);
 }