Instead of looping over my string I'd like to use LINQ. How to do the following?
// explode our word
List<char> rackBag = new List<char>();
rackBag.AddRange("MYWORD??".ToCharArray());
// How many wildcards?
int wildCardCount = rackBag.Count(x => x.Equals("?"));
wildCardCount should equal 2.