if (lastName.Contains("V") == true)
I only want to find last names where the last name is like this:
Randy M. Smith V
But it is also finding last names like this:
Joe B. Vance.
How do I only specifically find the suffix in the last name?
Go to the complete details ...