Kimono.KLocale.FormatLong C# (CSharp) 메소드

FormatLong() 공개 메소드

Given an integer, converts that to a numeric string containing the localized numeric equivalent. e.g. given 123456L, return "123,456" (for some European country). name="num" The number to convert
public FormatLong ( long num ) : string
num long
리턴 string
        public string FormatLong(long num)
        {
            return (string) interceptor.Invoke("formatLong$", "formatLong(long) const", typeof(string), typeof(long), num);
        }