This is what I do if a want full control over the number of white spaces in tab:
string tab = new string(' ', 3);
string message = $"{tab}My text";
Having control over white spaces is something that I find quite useful in personalized text layouts.