Exemplo n.º 1
0
 /// <summary>
 /// Creates a new Precision by accepting a type code and number of digites.
 /// </summary>
 /// <param name="precisionType">Precision type code.</param>
 /// <param name="numDigits">Number of digits.</param>
 public Precision(PrecisionTypeCode precisionType, int numDigits)
 {
     PrecisionType  = precisionType;
     NumberOfDigits = numDigits;
     FaceValue      = false;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new Precision by accepting a type code and number of digites.
 /// </summary>
 /// <param name="precisionType">Precision type code.</param>
 /// <param name="numDigits">Number of digits.</param>
 public Precision( PrecisionTypeCode precisionType, int numDigits )
 {
     PrecisionType = precisionType;
     NumberOfDigits = numDigits;
     FaceValue = false;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Creates a new Precision by accepting a type code.
 /// </summary>
 /// <param name="precisionType">Precision type code.</param>
 public Precision(PrecisionTypeCode precisionType)
 {
     this.PrecisionType = precisionType;
     FaceValue          = true;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Creates a new Precision by accepting a type code.
 /// </summary>
 /// <param name="precisionType">Precision type code.</param>
 public Precision(PrecisionTypeCode precisionType)
 {
     this.PrecisionType = precisionType;
     FaceValue = true;
 }