IKVM.Internal.CodeEmitter.ThrowException C# (CSharp) Метод

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

private ThrowException ( Type excType ) : void
excType IKVM.Reflection.Type
Результат void
        internal void ThrowException(Type excType)
        {
            Emit(OpCodes.Newobj, excType.GetConstructor(Type.EmptyTypes));
            Emit(OpCodes.Throw);
        }