I have a string which has short month name in it.\
string month = "Jun";
I need to get month in digit from this month name.
Say i do this:
int monthInDigit = getMonth(month);
monthInDigit <-- 6
How can i achieve this. If you cant get my question pleases comment i will explain it proprly.
Thanxx in advance