Answers for "how to do concatenation in c#"

2

c# string concatenation

string userName = "<Type your name here>";
string dateString = DateTime.Today.ToShortDateString();

// Use the + and += operators for one-time concatenations.
string str = "Hello " + userName + ". Today is " + dateString + ".";
System.Console.WriteLine(str);

str += " How are you today?";
System.Console.WriteLine(str);
Posted by: Guest on October-14-2020
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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language