Compare string ignoring uppercase/lowercase letters C#

Asked

Viewed 347 times

-1

How to check if two strings are equal by ignoring upper and lower case letters?

1 answer

3


firstString.Equals(secondString, StringComparison.OrdinalIgnoreCase)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.