I am tyring to create a Roman Numeral Calculator in C#. I want this calculator to accept two numbers (in Roman Numeral form) and then allow a single mathematical operation to be performed (+, -, *, /).

Using Roman Numerals:

I=1, V=5, X=10, L=50, C=100, D=500, M=1000

I want this to prompt for the first operand (rom1), operator(+, -, *, /), second operand (rom2) and then display results.

Ex. rom1 op rom2 = sol

Input Operand 1: XXV
Input Operator: -
Input Operand 2: V

Result: XX

Not sure how to really begin going about this. Any ideas/help would be greatly appreciated!