System.Reflection.Module.GetModuleHandle C# (CSharp) Method

GetModuleHandle() private method

private GetModuleHandle ( ) : ModuleHandle
return ModuleHandle
        internal unsafe ModuleHandle GetModuleHandle()
        {
            return new ModuleHandle((void*)m_pData);
        }
        #endregion

Usage Example

Esempio n. 1
0
 internal static unsafe Type GetTypeByNameUsingCARules(string name, Module scope)
 {
     if ((name == null) || (name.Length == 0))
     {
         throw new ArgumentException();
     }
     RuntimeTypeHandle handle2 = new RuntimeTypeHandle(_GetTypeByNameUsingCARules(name, (IntPtr) scope.GetModuleHandle().Value));
     return handle2.GetRuntimeType();
 }
All Usage Examples Of System.Reflection.Module::GetModuleHandle