Since '*' is already a string, an alternative I find sticking with the methods the type offers somewhat better to follow. So you could use:
"*".PadRight(25, "*")
of course you could also use PadLeft.
Since '*' is already a string, an alternative I find sticking with the methods the type offers somewhat better to follow. So you could use:
"*".PadRight(25, "*")
of course you could also use PadLeft.