You should heed the ReSharper warning. The substring returns a string, and the single quote notation is char, so you are comparing two different types. You should compare char with char, which you can do as follows:
if (lombardiTrophy[1].Equals('~'))
Of course, you want to make sure your string is at least two characters long.
source share