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]; }
public BlockEvent(BlockBase parent, string key) : base(parent, key) { }