how to check if a string contains upper and lowercase characters in c# code example
Example: how to check if a string contains a capital letter c#
using System.Linq;
str.Any(char.IsUpper);
using System.Linq;
str.Any(char.IsUpper);