string[] f = File.ReadAllLines("C:\\Users\\crazy-stupid-boy\\Desktop\\zoe project\\PATS_084623Q\\PATS_084623Q\\bin\\Debug\\Config.txt");string str = f[5];File.WriteAllText("C:\\Users\\crazy-stupid-boy\\Desktop\\zoe project\\PATS_084623Q\\PATS_084623Q\\bin\\Debug\\ConfigText.txt",str);//double capintcomboBox = Convert.ToString(RetrieveValueFromConfig("Capture Intervals"));//string str = Convert.ToDouble();double.Parse(str);Convert.ToDouble(str);timer = new System.Timers.Timer();timer.Interval = str * 1000;timer.AutoReset = true;timer.Elapsed += new ElapsedEventHandler(timer1_Elasped);//timer.Interval = str.ToString;timer.Enabled = true;timer.Start();