Tech Tutorials Database
GeekArticles Microsoft Microsoft.NET
 

How to Toggle String Case in .NET

 
Author: codeproject.com
Category: Microsoft.NET
Comments (0)

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 (from i in str select (char.IsLetter(i) ? ...

Read More...




Sponsored Links




Read Next: How to Toggle String Case in .NET



 

 

Comments



Post Your Comment:

Your Name:*
e-mail ID:(required for notification)*
Image Verification: 
 
 Subscribe