Bigio.BigArray.JITO.Operations.AbstractOperationResolver.GetMethodInfo C# (CSharp) Метод

GetMethodInfo() приватный Метод

private GetMethodInfo ( object obj, string methodName ) : MethodInfo
obj object
methodName string
Результат System.Reflection.MethodInfo
        private MethodInfo GetMethodInfo(object obj, string methodName)
        {
            Type thisType = obj.GetType();
            return thisType.GetMethod(methodName, BindingFlags.Public | BindingFlags.Instance);
        }