RosettaCodeData/Task/String-prepend/C-sharp/string-prepend.cs
2023-07-01 13:44:08 -04:00

15 lines
268 B
C#

using System;
namespace PrependString
{
class Program
{
static void Main(string[] args)
{
string str = "World";
str = "Hello " + str;
Console.WriteLine(str);
Console.ReadKey();
}
}
}