FormatUInt64() private method

private FormatUInt64 ( ulong value, String format, NumberFormatInfo info ) : String
value ulong
format String
info System.Globalization.NumberFormatInfo
return String
コード例 #1
0
 public string ToString(string?format)
 {
     return(Number.FormatUInt64(m_value, format, null));
 }
コード例 #2
0
ファイル: UInt64.cs プロジェクト: shrah/coreclr
 public String ToString(String format)
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatUInt64(m_value, format, NumberFormatInfo.CurrentInfo));
 }
コード例 #3
0
 public string ToString(string format, IFormatProvider provider)
 {
     return(Number.FormatUInt64(this, format, NumberFormatInfo.GetInstance(provider)));
 }
コード例 #4
0
 public string ToString(string?format, IFormatProvider?provider)
 {
     return(Number.FormatUInt64(m_value, format, provider));
 }
コード例 #5
0
 public override string ToString()
 {
     return(Number.FormatUInt64(this, null, NumberFormatInfo.CurrentInfo));
 }
コード例 #6
0
 public string ToString(string format)
 {
     return(Number.FormatUInt64(this, format, NumberFormatInfo.CurrentInfo));
 }
コード例 #7
0
 public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string?format)
 {
     return(Number.FormatUInt64(m_value, format, null));
 }
コード例 #8
0
 public String ToString(String format, IFormatProvider provider)
 {
     return(Number.FormatUInt64(m_value, format, provider));
 }
コード例 #9
0
 public override string ToString()
 {
     return(Number.FormatUInt64(m_value, null, null));
 }
コード例 #10
0
 public string ToString(IFormatProvider?provider)
 {
     return(Number.FormatUInt64(m_value, null, provider));
 }
コード例 #11
0
ファイル: UInt64.cs プロジェクト: zaytsev-victor/coreclr
 public String ToString(String format)
 {
     return(Number.FormatUInt64(m_value, format, NumberFormatInfo.CurrentInfo));
 }
コード例 #12
0
ファイル: UInt64.cs プロジェクト: zaytsev-victor/coreclr
 public String ToString(IFormatProvider provider)
 {
     return(Number.FormatUInt64(m_value, null, NumberFormatInfo.GetInstance(provider)));
 }
コード例 #13
0
ファイル: UInt64.cs プロジェクト: zaytsev-victor/coreclr
 public override String ToString()
 {
     return(Number.FormatUInt64(m_value, null, NumberFormatInfo.CurrentInfo));
 }
コード例 #14
0
ファイル: UInt64.cs プロジェクト: shrah/coreclr
 public String ToString(String format, IFormatProvider provider)
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatUInt64(m_value, format, NumberFormatInfo.GetInstance(provider)));
 }
コード例 #15
0
 public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string?format, IFormatProvider?provider)
 {
     return(Number.FormatUInt64(m_value, format, provider));
 }
コード例 #16
0
ファイル: UInt64.cs プロジェクト: shrah/coreclr
 public override String ToString()
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatUInt64(m_value, null, NumberFormatInfo.CurrentInfo));
 }
コード例 #17
0
ファイル: UInt64.cs プロジェクト: vmkc/research-environment
 //| <include path='docs/doc[@for="UInt64.ToString2"]/*' />
 public String ToString(String format)
 {
     return(Number.FormatUInt64(m_value, format));
 }