Finding length of a string in C#

Using Length property, total number of characters will be returned.
Remember that, Inner Space will also be considered.

using System;
using System.IO;
using System.Text;

namespace forgetCode
{
    class program1
    {
        static void Main(string[] args)
        {
            string firstString = "Forget code";

            int iLength = firstString.Length;

            Console.WriteLine("Length of the string is :"+iLength);

            // Inner Space will also be considered
           
        }
   
    }
}



Output:
Length of the string is : 11

..