Bickle.Utility.ReflectionExtensions.InvokeWithReflection C# (CSharp) Метод

InvokeWithReflection() публичный статический Метод

public static InvokeWithReflection ( this target, string method ) : object
target this
method string
Результат object
        public static object InvokeWithReflection(this object target, string method, params object[] parameters)
        {
            return target.GetType().GetMethod(method).Invoke(target, parameters);
        }