Kimono.KLocale.ThousandsSeparator C# (CSharp) Method

ThousandsSeparator() public method

Returns what the thousands separator should look like ("," or "." etc.) according to the current locale or user settings.
public ThousandsSeparator ( ) : string
return string
        public string ThousandsSeparator()
        {
            return (string) interceptor.Invoke("thousandsSeparator", "thousandsSeparator() const", typeof(string));
        }