Answers for "c# concat function"

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
0

C# concatenation

// Declare strings    
string firstName = "Mahesh";    
string lastName = "Chand";    
    
// Concatenate two string variables    
string name = firstName + " " + lastName;    
Console.WriteLine(name);
Posted by: Guest on August-17-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