C# Program to Concatenate Two Strings
Posted by Superadmin on August 15 2022 11:29:37

C# Program to Concatenate Two Strings

 

This is a C# Program to concatenate two strings.

Problem Description

This C# Program Concatenates Two Strings.

Problem Solution

Here the two strings are joined together to form a single string with a build in string function.

Program/Source Code

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();
    }
}
Program Explanation

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.

 
Runtime Test Cases
 
GoodMorning