예제 #1
0
        public BlockConnectorBase(BlockBase parent, string key)
        {
            this.parent = parent;
            this.key = key;

            //force create connector without accessing internal state of the block
            IConnector temp = parent[key];
        }
예제 #2
0
 public BlockEvent(BlockBase parent, string key)
     : base(parent, key)
 {
 }