Hi there, I have a rookie's question about the conversion.
string Descript1 = ":1:2:3:4:5";
Regex pattern = new Regex("(:)");
foreach (string sub in pattern.Split(Descript1))
{
if (sub != ":")
{
float a = Convert.ToSingle(sub);
}
}
But this code keep pumping out the error: "the string was not in the correct format.".
Anyone could help me?
Thanks.