Python.Runtime.DelegateObject.GetTrueDelegate C# (CSharp) 메소드

GetTrueDelegate() 개인적인 정적인 메소드

private static GetTrueDelegate ( IntPtr op ) : Delegate
op System.IntPtr
리턴 System.Delegate
        private static Delegate GetTrueDelegate(IntPtr op)
        {
            CLRObject o = GetManagedObject(op) as CLRObject;
            if (o != null)
            {
                Delegate d = o.inst as Delegate;
                return d;
            }
            return null;
        }