Saturday 2 December 2017

C# Program to calculate the length of the string


Code:

using System;
class Program
{
    static void Main()
    {
        string s1 = "Computer";
        Console.WriteLine("The Length of the First String is : " +s1.Length);
        string s2 = "";
        Console.WriteLine("The Length of the Second String is : " +s2.Length);
        Console.ReadLine();
    }
}


Output:

The Length of the First String is : 8
The Length of the Second String is : 0


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...