Rubberduck.Parsing.Preprocessing.ConditionalCompilationIfExpression.ConditionalCompilationIfExpression C# (CSharp) Method

ConditionalCompilationIfExpression() public method

public ConditionalCompilationIfExpression ( IExpression ifCondCode, IExpression ifCond, IExpression ifBlock, IEnumerable elseIfCodeCondBlocks, IExpression elseCondCode, IExpression elseBlock, IExpression endIfCode ) : System
ifCondCode IExpression
ifCond IExpression
ifBlock IExpression
elseIfCodeCondBlocks IEnumerable
elseCondCode IExpression
elseBlock IExpression
endIfCode IExpression
return System
        public ConditionalCompilationIfExpression(
            IExpression ifCondCode,
            IExpression ifCond,
            IExpression ifBlock,
            IEnumerable<Tuple<IExpression, IExpression, IExpression>> elseIfCodeCondBlocks,
            IExpression elseCondCode,
            IExpression elseBlock,
            IExpression endIfCode)
        {
            _ifCondCode = ifCondCode;
            _ifCond = ifCond;
            _ifBlock = ifBlock;
            _elseIfCodeCondBlocks = elseIfCodeCondBlocks;
            _elseCondCode = elseCondCode;
            _elseBlock = elseBlock;
            _endIfCode = endIfCode;
        }
ConditionalCompilationIfExpression