DEV Community

Asadbek-IT
Asadbek-IT

Posted on

String Operations

string name = "John";
string UpperName = name.ToUpper();
Console.WriteLine(upperName);

javob:Kiritilgan ismni kattada chiqartirib beradi.

string text = "Hello";
string text2 = "World";
Console.WriteLine(text + text2);

Top comments (0)