FormatInt64() 개인적인 메소드

private FormatInt64 ( long value, String format, NumberFormatInfo info ) : String
value long
format String
info System.Globalization.NumberFormatInfo
리턴 String
예제 #1
0
 public string ToString(string?format)
 {
     return(Number.FormatInt64(m_value, format, null));
 }
예제 #2
0
 public string ToString(string?format, IFormatProvider?provider)
 {
     return(Number.FormatInt64(m_value, format, provider));
 }
예제 #3
0
 public override string ToString()
 {
     return(Number.FormatInt64(m_value, null, null));
 }
예제 #4
0
 public override string ToString()
 {
     return(Number.FormatInt64(this, (ReadOnlySpan <char>)(char[]) null, (IFormatProvider)null));
 }
예제 #5
0
 //| <include path='docs/doc[@for="Int64.ToString2"]/*' />
 public String ToString(String format)
 {
     return(Number.FormatInt64(m_value, format));
 }
예제 #6
0
파일: Int64.cs 프로젝트: wecing/coreclr
 public override String ToString()
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatInt64(m_value, null, NumberFormatInfo.CurrentInfo));
 }
예제 #7
0
 public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string?format)
 {
     return(Number.FormatInt64(m_value, format, null));
 }
예제 #8
0
 public override String ToString()
 {
     return(Number.FormatInt64(m_value, null, NumberFormatInfo.CurrentInfo));
 }
예제 #9
0
 public override string ToString()
 {
     return(Number.FormatInt64(this, null, NumberFormatInfo.CurrentInfo));
 }
예제 #10
0
 public String ToString(String format)
 {
     return(Number.FormatInt64(m_value, format, NumberFormatInfo.CurrentInfo));
 }
예제 #11
0
 public String ToString(String format, IFormatProvider provider)
 {
     return(Number.FormatInt64(m_value, format, NumberFormatInfo.GetInstance(provider)));
 }
예제 #12
0
 public string ToString(string format, IFormatProvider provider)
 {
     return(Number.FormatInt64(this, (ReadOnlySpan <char>)format, provider));
 }
예제 #13
0
 public string ToString([Nullable(2)] string format)
 {
     return(Number.FormatInt64(this, (ReadOnlySpan <char>)format, (IFormatProvider)null));
 }
예제 #14
0
 public string ToString([Nullable(2)] IFormatProvider provider)
 {
     return(Number.FormatInt64(this, (ReadOnlySpan <char>)(char[]) null, provider));
 }
예제 #15
0
파일: Int64.cs 프로젝트: wecing/coreclr
 public String ToString(String format)
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatInt64(m_value, format, NumberFormatInfo.CurrentInfo));
 }
예제 #16
0
 public string ToString(string format)
 {
     return(Number.FormatInt64(this, format, NumberFormatInfo.CurrentInfo));
 }
예제 #17
0
파일: Int64.cs 프로젝트: wecing/coreclr
 public String ToString(String format, IFormatProvider provider)
 {
     Contract.Ensures(Contract.Result <String>() != null);
     return(Number.FormatInt64(m_value, format, NumberFormatInfo.GetInstance(provider)));
 }
예제 #18
0
 public string ToString(string format, IFormatProvider provider)
 {
     return(Number.FormatInt64(this, format, NumberFormatInfo.GetInstance(provider)));
 }
예제 #19
0
 public string ToString(IFormatProvider?provider)
 {
     return(Number.FormatInt64(m_value, null, provider));
 }
예제 #20
0
파일: Int64.cs 프로젝트: JonHanna/corert
 public String ToString(String format, IFormatProvider provider)
 {
     return(Number.FormatInt64(m_value, format, provider));
 }
예제 #21
0
 public string ToString([StringSyntax(StringSyntaxAttribute.NumericFormat)] string?format, IFormatProvider?provider)
 {
     return(Number.FormatInt64(m_value, format, provider));
 }
예제 #22
0
파일: Int64.cs 프로젝트: PlumpMath/CIL2Java
 public string ToString(IFormatProvider provider)
 {
     return(Number.FormatInt64(m_value, null, NumberFormatInfo.GetInstance(provider)));
 }