public static void Main()
string strMyValue ="hello";
Console.WriteLine(strMyValue);
StringBuilder sbMyValue = new StringBuilder("");
sbMyValue.Append("Hello Visitor");
sbMyValue.Append("How Are You ??");
string strValue = sbMyValue.ToString();
Console.WriteLine(strValue);