FT.Model.Feedhelper.PresentText C# (CSharp) Method

PresentText() public static method

public static PresentText ( this text, int maxLength ) : string
text this
maxLength int
return string
        public static string PresentText(this string text, int maxLength)
        {
            return text.Truncate(maxLength, true);
        }