Forum

String conversion

Hello! is the following somehow possible? double num = 123.12 ; string Arr[]={ "num" }; StringToDouble (Arr[ 0 ]); This results in 0.0 and not in 123.12 What obviously works but is not what I Need is: string test[]={ "123.12" }; StringToDouble (test[ 0 ]); This results in 123.12 Why I Need