RequiresFatSection() static private method

static private RequiresFatSection ( Collection handlers ) : bool
handlers Collection
return bool
        private void WriteExceptionHandlers()
        {
            this.Align(4);
            Collection <ExceptionHandler> exceptionHandlers = this.body.ExceptionHandlers;

            if (exceptionHandlers.Count < 21 && !CodeWriter.RequiresFatSection(exceptionHandlers))
            {
                this.WriteSmallSection(exceptionHandlers);
                return;
            }
            this.WriteFatSection(exceptionHandlers);
        }