How can a string variable called myString be converted to an all-capitals representation for future use?

How can a string variable called myString be converted to an all-capitals representation for future use?

@lualvarez: You can make use of the ToUpper method like this: myString.ToUpper() and assign it to a variable

Thanks Friend …!!