System.Reflection.Module.GetHINSTANCE C# (CSharp) Метод

GetHINSTANCE() приватный Метод

private GetHINSTANCE ( ) : IntPtr
Результат IntPtr
        internal extern IntPtr GetHINSTANCE();

Usage Example

Пример #1
0
		public static IntPtr GetHINSTANCE (Module m)
		{
			if (m == null)
				throw new ArgumentNullException ("m");

			return m.GetHINSTANCE ();
		}