Torna al Thread
Type targetClass = Type.GetType("DataLayer." + hookClasseMetodo);
object instance = Activator.CreateInstance(targetClass, dbLink);
try
{
targetClass.GetMethod(hookMetodo.Replace(hookClasseMetodo + ".", "")).Invoke(instance, parameters);
}
catch (Exception ex)
{
}