Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Moin, ich weiss, Grundwissen aber dennoch frage ich nochmal. Wie konvertiere ich einen short in einen double Wert?
short t = 2; double b; b = (double)t;
So?
short s = 1; double d; d = Convert::ToDouble(s);
Oder mittels casting
short t = 2; double b; b = static_cast<double>(t);