string name = "Jerry"; string welcome = "welcome to C#"; string result = string.Format("Hello {0}, {1}", name, welcome); Console.WriteLine(result);