Loyc.StringBuilderExt.TrimEnd C# (CSharp) 메소드

TrimEnd() 공개 정적인 메소드

Removes all trailing occurrences of spaces and tabs from the StringBuilder object.
public static TrimEnd ( this sb ) : StringBuilder
sb this
리턴 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>