Пример #1
0
 internal OperandList(IOperandContainer <T> container, int offset, bool isReadOnly = false)
 {
     Offset     = offset;
     Container  = container;
     IsReadOnly = isReadOnly;
 }
Пример #2
0
 internal OperandList(IOperandContainer <T> owningNode, bool isReadOnly = false)
     : this(owningNode, 0, isReadOnly)
 {
 }