///
///Reads config files
///
///
///true if the config file was successfully read. false in case of error
///
///
///Path to the file that contains the configuration parameters
///
public bool ReadConfig(string file) {
bool c = false;
...
return c;
}