Loyc.StringBuilderExt.TrimEnd C# (CSharp) Method

TrimEnd() public static method

Removes all trailing occurrences of spaces and tabs from the StringBuilder object.
public static TrimEnd ( this sb ) : StringBuilder
sb this
return StringBuilder
		public static StringBuilder TrimEnd(this StringBuilder sb) { return TrimEnd(sb, _defaultTrimChars); }
		/// <summary>Removes all trailing occurrences of the specified set of characters from the StringBuilder object.</summary>