Kimono.KLocale.FormatLong C# (CSharp) Method

FormatLong() public method

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
return string
        public string FormatLong(long num)
        {
            return (string) interceptor.Invoke("formatLong$", "formatLong(long) const", typeof(string), typeof(long), num);
        }