Name, city, message, email address... all of these are text.
In software, the data type used to store text is called string.
string isim = "Emre";
string mesaj = "Merhaba dünya";
Most programs work not only with numbers, but also with text. Usernames, passwords, descriptions, and error messages are often stored as strings.
You can perform many operations on strings, such as measuring length, changing letter case, and extracting parts.
string metin = "Merhaba";
Console.WriteLine(metin.Length);
Console.WriteLine(metin.ToUpper());
Console.WriteLine(metin.ToLower());
Sometimes you combine multiple strings. Other times, you insert variables into text. These tasks happen very often in daily programming.
string ad = "Emre";
int yas = 24;
string sonuc = $"Benim adım {ad}, yaşım {yas}.";
Console.WriteLine(sonuc);
Strings may seem easy, but they are used in almost every project very frequently. Knowing the basics well is a big advantage.