Loyc.StringBuilderExt.Trim C# (CSharp) Method

Trim() public static method

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