コード例 #1
0
ファイル: TextFormatInteger.cs プロジェクト: fxxxysh/toolkit
 public long GetValue(string s)
 {
     return(TextFormatInteger.ToLong(s, this.Style));
 }
コード例 #2
0
ファイル: TextFormatInteger.cs プロジェクト: fxxxysh/toolkit
 public string GetText(long value)
 {
     return(TextFormatInteger.ToString(value, this.Style, this.FixedLength, LeadingStyle.Zeros));
 }