One way, could be:
string temp = "4325";
double temperature = double.Parse(temp) * 0.01;
string hum = "583";
double humidity = double.Parse(hum) * 0.1;
solved Convert from string to double from 4325 to 43.25 [closed]
One way, could be:
string temp = "4325";
double temperature = double.Parse(temp) * 0.01;
string hum = "583";
double humidity = double.Parse(hum) * 0.1;
solved Convert from string to double from 4325 to 43.25 [closed]