コード例 #1
0
ファイル: SupportClass.cs プロジェクト: SkelletonX/DDTServer
 private TextNumberFormat(SupportClass.TextNumberFormat.formatTypes theType, CultureInfo cultureNumberFormat, int digits)
 {
     this.numberFormat      = cultureNumberFormat.NumberFormat;
     this.numberFormatType  = (int)theType;
     this.groupingActivated = true;
     this.separator         = this.GetSeparator((int)theType);
     this.digits            = digits;
 }
コード例 #2
0
ファイル: SupportClass.cs プロジェクト: SkelletonX/DDTServer
 private TextNumberFormat(SupportClass.TextNumberFormat.formatTypes theType, int digits)
 {
     this.numberFormat      = NumberFormatInfo.CurrentInfo;
     this.numberFormatType  = (int)theType;
     this.groupingActivated = true;
     this.separator         = this.GetSeparator((int)theType);
     this.digits            = digits;
 }