public void startAnalysing(String IdaLocation, String baseDirIn, String outputIn) { idaHandler = new IdaHandler(IdaLocation); baseDir = baseDirIn; output = outputIn; Thread monitor = new Thread(new ThreadStart(start)); monitor.Start(); }