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.
advertisement
advertisement
Runtime Test Cases
GoodMorning
Sanfoundry Global Education & Learning Series – 1000 C# Programs.
If you wish to look at all C# Programming examples, go to 1000 C# Programs.
Next Steps:
- Get Free Certificate of Merit in C# Programming
- Participate in C# Programming Certification Contest
- Become a Top Ranker in C# Programming
- Take C# Programming Tests
- Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
- Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Related Posts:
- Practice Computer Science MCQs
- Buy C# Books
- Practice MCA MCQs
- Apply for C# Internship
- Buy Computer Science Books