I have a simple code in c# that converts a string into int
int i = Convert.ToInt32(aTestRecord.aMecProp);
aTestRecord.aMecProp is of string. The test I am running, during that it has values of 1.15 in string.
but above line throws error saying that input string wasn't in a format!
I don't understand why?
I am using VS 2008 c#