You should add the length of your string as follows:
firstName = firstName.PadLeft(firstName.Length + 3, '*');
The first parameter (totalWidth) represents the length of the result string. If the line length is less than the totalWidth parameter, PadLeft adds so many characters that the total line length will be equal to totalWidth.
source share