Input Field Upper Case?

The idea is sound. You could also do:

public char SetToUpper(char c) {
   return char.ToUpper(c);
  }

This worked like a charm, thanks!