You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
305 B
C#

/*
* C# Program to Concatenate Two Strings
*/
using System;
class Program
{
static void Main()
{
string s1 = "Good";
string s2 ="Morning";
string s3=string.Concat(s1, s2);
Console.WriteLine(s3);
Console.ReadLine();
}
}
/*
GoodMorning