Answers for "check if string only is c#"

C#
2

c# check if string is only letters and numbers

if (textVar.All(c => Char.IsLetterOrDigit(c))) {
    // String contains only letters & numbers
}
Posted by: Guest on May-19-2020
0

C# check something is string

if(value is string)
                {

                }
Posted by: Guest on March-10-2021

Code answers related to "check if string only is c#"

C# Answers by Framework

Browse Popular Code Answers by Language