<center>
I don't understand the meaning of the following codes. Could anyone tell me? Thank you very much!
</center>
----------------------------------------------------------------
int commaPos = input.IndexOf(',');
double param1 = Convert.ToDouble(input.Substring(0, commaPos));
double param2 = Convert.ToDouble(input.Substring(commaPos + 1, input.Length - commaPos - 1));
----------------------------------------------------------------