public static int SuitFromChar(char s) { for (int i = 0; i < suit_chars.Length; i++) if (suit_chars[i] == s) return i; return -1; }