Answers for "string concatanation c#"

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

c# concatenate strings

Console.WriteLine ("text"+Var);
Posted by: Guest on May-31-2021

C# Answers by Framework

Browse Popular Code Answers by Language