I am trying to see the output as "200". I have about 400 variable names with different settings from a flat file and I need to load the configuration but having a hard time casting the type to set the settings.
private double test1 = 100;
private void button1_Click(object sender, EventArgs e) {
double testNewType = (double)test1;
testNewType = 200;
Debug.Print(test1.ToString());
}