CreateMetaType() статический приватный Метод

static private CreateMetaType ( Type impl ) : IntPtr
impl System.Type
Результат System.IntPtr
Пример #1
0
 /// <summary>
 /// Metatype initialization. This bootstraps the CLR metatype to life.
 /// </summary>
 public static PyType Initialize()
 {
     PyCLRMetaType = TypeManager.CreateMetaType(typeof(MetaType), out _metaSlotsHodler);
     return(PyCLRMetaType);
 }
Пример #2
0
        //====================================================================
        // Metatype initialization. This bootstraps the CLR metatype to life.
        //====================================================================

        public static IntPtr Initialize()
        {
            PyCLRMetaType = TypeManager.CreateMetaType(typeof(MetaType));
            return(PyCLRMetaType);
        }