private int Output(string get) { Roman R = new Roman(); return(R.Convert(get)); }
int output(string input) { Roman R = new Roman(); return(R.Convert(input)); }
private int Output(string val) { Roman R = new Roman(); return(R.Convert(val.ToUpper())); }