I want to be able to instaniate a class with a public constructor that will by default call a private constructor and I think it is something close to the code below, but it isn't.
public MySQLConnector()
: this MySQLConnector (ConfigurationManager.AppSettings["DBConnection"])
{
}
private MySQLConnector(string dbConnectionString)
{
//code
}