You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
498 B
C#

/*
* C# Program to Trim the Given String
*/
using System;
namespace trim
{
class Program
{
static void Main(string[] args)
{
string myString = " CSHARP ";
System.Console.WriteLine("The String Before Trimming : (" + myString + ")");
System.Console.WriteLine("The String After Trimming : (" + myString.Trim() + ")");
Console.Read();
}
}
}
/*
The String Before Trimming : ( CSHARP )
The String After Trimming : (CSHARP)