Been given an exercise on converting roman numerals to integers in C#,i am still new to coding i am just stuck and confused on how to go on about this question. Given method and parameter as a start
```
public int RomanToInt(string s){
}
```
an example on how the answers should be
```
Input: s = "III"
Output: 3
Explanation: III = 3.
```