Saturday 2 December 2017

C# Program to Trim the Given String


Code:

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();
        }
    }
}


Output:

The String Before Trimming : (     CSHARP    )
The String After Trimming : (CSHARP)


More C# Programs:



















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...