Answers for "concat in c sharp"

C#
3

c# String.Concat()

string first = "hello_";
string second = "world";
/* Unite multiple strings to one new string*/

string third = String.Concat(first, second);
// string third will be now "hello_world"
Posted by: Guest on March-26-2021
0

how to concate in c#

public static string Concat (string str1, string str2);
Posted by: Guest on August-10-2021

C# Answers by Framework

Browse Popular Code Answers by Language