M
mike
In my array i have 10|5.98
string[] mySplit = myArray.Split('|');
string DeliveryAddress = mySplit[0];
string ShippingID = mySplit[1];
my problem is ShippingID contains 5.9 not 5.98
can anyone tell me where my last number has gone, or how i get around this
problem?
Thanks in advance
Mike
string[] mySplit = myArray.Split('|');
string DeliveryAddress = mySplit[0];
string ShippingID = mySplit[1];
my problem is ShippingID contains 5.9 not 5.98
can anyone tell me where my last number has gone, or how i get around this
problem?
Thanks in advance
Mike