System.Runtime.InteropServices.RegistrationServices.UnregisterAssembly C# (CSharp) Method

UnregisterAssembly() private method

private UnregisterAssembly ( Assembly assembly ) : bool
assembly System.Reflection.Assembly
return bool
		public virtual bool UnregisterAssembly (Assembly assembly)
		{
			throw new NotImplementedException ();
		}

Usage Example

コード例 #1
0
		public static void UnregisterSelf()
		{
			RegistrationServices aRS = new RegistrationServices();
			Assembly thisAssembly = Assembly.GetExecutingAssembly();
			if (thisAssembly != null)
				aRS.UnregisterAssembly(thisAssembly);
		}
All Usage Examples Of System.Runtime.InteropServices.RegistrationServices::UnregisterAssembly