programming-examples/c-sharp/Strings/C# Program to calculate the length of the string.cs

19 lines
465 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* C# Program to calculate the length of the string
*/
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();
}
}
/*
The Length of the First String is : 8
The Length of the Second String is : 0