![]() |
|||
Comments and Discussions
|
About Article
Alternative to How to Toggle String Case in .NET
A whole lot less code and a lot easier to do.public static string ToggleCase(this string str){ if (string.IsNullOrEmpty(str)) return str; return string.Join("", (from i in str select (char.IsLetter(i) ? ...
Related Videos
Related Articles
|
|||||||||||||||||||||||||||