Are there any built-in functions in .Net that allow you to use strings in strings or handle the proper wrapper? I know there is somewhere in the Microsoft.VB namespace, but I want to avoid them if possible.
I know about functions like string.ToUpper and string.ToLower () functions, but this affects the whole line. I am looking at something like this:
var myString = "micah"; myString = myString.Format(FormattingOptions.Capitalize)
Micah source share