RosettaCodeData/Task/String-append/C-sharp/string-append.cs

10 lines
149 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Program
{
static void Main(string[] args)
{
string x = "foo";
x += "bar";
System.Console.WriteLine(x);
}
}