26 October 2020

Extensions enhancement - HasLower() method added

The .HasLower() method was added to both the System.String and System.Text.StringBuilder objects.  It allows the developer the ability to quickly check if a string contains numeric values e.g.

"blog.cjvandyk.com Rocks!".HasLower()

will return True whereas:

"BLOG.CJVANDYK.COM ROCKS!".HasLower()

will return False.


For a more detail of what Extensions offer, see:







Add Extensions to your toolbox and make your coding life a little easier.  

Happy coding
C

Microsoft Authentication Library (MSAL) Overview

The Microsoft Authentication Library (MSAL) is a powerful library designed to simplify the authentication process for applications that conn...