예제 #1
0
        public ForInstruction Body(Action <InstructionAggregate> makeBody)
        {
            InstructionAggregate body = new InstructionAggregate();

            makeBody(body);
            _body = body;
            return(this);
        }