Bot.Core.StringExtensions.FormatToIrc C# (CSharp) Method

FormatToIrc() public static method

public static FormatToIrc ( this s ) : string
s this
return string
        public static string FormatToIrc(this string s)
        {
            if (s.Length > 400)
            {
                int lastIndex = s.Substring(0, 400).LastIndexOf(' ');
                return s.Substring(0, lastIndex) + " [...]";
            }
            else
                return s;
        }