Extends System.String/IEnumerable<string> by following methods: a) ShortenTo(int length, string hint = "..."): Crops a text to fit into certain number of chars. Appends 'hint' if it has to be cropped; b) WrapAt(int margin): Nicely wraps a text at the given margin. Tries not to split in the middle of words. c) SplitLines, JoinLines: Splits a string into a list of lines; or joins it. Both using Environment.NewLine d) IEnumerable<string>.IndentBy(int leadingChars): Indents a each of a list of lines by given number of spaces. e) string.IndentLinesBy(int leadingChars): Indents each line in the string by given number of spaces.
$ dotnet add package Minimod.PrettyTextNo README available.