How can I check if a string contains all question marks? Like this:
string input = \"????????\";
var isAllQuestionMarks = input.All(c => c == '?');