Ejemplo n.º 1
0
        public virtual byte* getAssemblyName_wrapper(IntPtr _this, out IntPtr exception, CORINFO_ASSEMBLY_STRUCT_* assem)
        {
            exception = IntPtr.Zero;
            try
            {
                return getAssemblyName(assem);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (byte*)0;
        }
Ejemplo n.º 2
0
 private byte* getAssemblyName(IntPtr _this, CORINFO_ASSEMBLY_STRUCT_* assem)
 { throw new NotImplementedException("getAssemblyName"); }
Ejemplo n.º 3
0
 static byte* _getAssemblyName(IntPtr thisHandle, IntPtr* ppException, CORINFO_ASSEMBLY_STRUCT_* assem)
 {
     var _this = GetThis(thisHandle);
     try
     {
         return _this.getAssemblyName(assem);
     }
     catch (Exception ex)
     {
         *ppException = _this.AllocException(ex);
         return default(byte*);
     }
 }