C# 클래스 Python.Runtime.ClassBase

Base class for Python types that reflect managed types / classes. Concrete subclasses include ClassObject and DelegateObject. This class provides common attributes and common machinery for doing class initialization (initialization of the class __dict__). The concrete subclasses provide slot implementations appropriate for each variety of reflected type.
상속: ManagedType
파일 보기 프로젝트 열기: fkarb/pythonnet 1 사용 예제들

공개 메소드들

메소드 설명
type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr

비공개 메소드들

메소드 설명
CanSubclass ( ) : bool
ClassBase ( Type tp ) : System
tp_clear ( IntPtr ob ) : int
tp_compare ( IntPtr ob, IntPtr other ) : int
tp_dealloc ( IntPtr ob ) : void
tp_hash ( IntPtr ob ) : IntPtr
tp_init ( IntPtr ob, IntPtr args, IntPtr kw ) : int
tp_is_gc ( IntPtr type ) : int
tp_iter ( IntPtr ob ) : IntPtr
tp_str ( IntPtr ob ) : IntPtr
tp_traverse ( IntPtr ob, IntPtr func, IntPtr args ) : int

메소드 상세

type_subscript() 공개 메소드

public type_subscript ( IntPtr ob, IntPtr idx ) : IntPtr
ob System.IntPtr
idx System.IntPtr
리턴 System.IntPtr