Интерполяция строк
int n = 100;
string msg = $"Result: {n}";int n = 100;
string msg = string.Format("Result {0}", n);Last updated
Was this helpful?
int n = 100;
string msg = $"Result: {n}";int n = 100;
string msg = string.Format("Result {0}", n);Last updated
Was this helpful?
Was this helpful?