99
C# String Trim()
The C# Trim() method is used to remove all leading and trailing white-space characters from the current String object.
Signature
Parameter
First method does not take any parameter. Second method takes a char array as parameter.
Return
It returns a string.
C# String Trim() Method Example
Output:
Hello C#
Next TopicC# String TrimEnd()