Convert a string into Title Case or ProperCase
This article help us on Convert a string into Title Case or ProperCase
String class in .NET Framework supports only uppercase and lowercase conversions. To convert a string into Title Case (ProperCase) string, you may have to use the following code.
string s = "welcome to title case";
Console.WriteLine(Microsoft.VisualBasic.Strings.StrConv(s, VbStrConv.ProperCase,0));
The output of the above code is as follows:
Welcome To Title Case
Thanks. The suggestion worked out for me. In C# there is the method ToTitleCase available but in Vb.Net only upper or lower case conversion is possible.