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