Just for neatness sake I was wondering, whether it\'s possible to cast Y or N to a bool? Something like this;
bool theanswer = Convert.ToBoolean(input);
Or this?
bool CastToBoolean(string input) { return input.Equals("Y", StringComparison.OrdinalIgnoreCase); }