GoodMorning
This is a C# Program to concatenate two strings.
This C# Program Concatenates Two Strings.
Here the two strings are joined together to form a single string with a build in string function.
Here is source code of the C# Program to Concatenate Two Strings. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.
/* * 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(); } }
This C# program is used to concatenate two strings. We have already defined two strings using ‘s1’ and ‘s2’ variables. Using ‘s3’ variable concatenate the two strings using Concat() function.
GoodMorning