Given this string
string str1 = "text";
string str2 = str1.ToUpper();
string str2 = str1.ToLower();
No parenthesis
int length = str1.Length;
int index = str1.IndexOf();
## Access a char in a string
```C#
char str2 = str1[x];
Return part of a string
string str2 = str1.Substring(startIndex, lenght);
string str2 = str1 + "other string";
Like f string in python
string str2 = $"this is a string with a {variable}";