System.Reflection.Emit.DynamicILInfo.SetExceptions C# (CSharp) Method

SetExceptions() public method

public SetExceptions ( byte exceptions ) : void
exceptions byte
return void
        public void SetExceptions(byte[] exceptions)
        {
            if (exceptions == null)
                exceptions = new byte[0];

            m_exceptions = (byte[])exceptions.Clone();
        }
        

Same methods

DynamicILInfo::SetExceptions ( byte exceptions, int exceptionsSize ) : void