Bickle.Utility.ReflectionExtensions.InvokeWithReflection C# (CSharp) Méthode

InvokeWithReflection() public static méthode

public static InvokeWithReflection ( this target, string method ) : object
target this
method string
Résultat object
        public static object InvokeWithReflection(this object target, string method, params object[] parameters)
        {
            return target.GetType().GetMethod(method).Invoke(target, parameters);
        }