Example #1
0
 internal ParentNotifyingMap(IdleEngine engine, IDictionary <string, ValueReference> other)
 {
     if (other != null)
     {
         underlying = new Dictionary <string, ValueReference>(other);
     }
     else
     {
         underlying = new Dictionary <string, ValueReference>();
     }
     this.engine = engine;
 }
Example #2
0
 internal ParentNotifyingMap(IdleEngine engine) : this(engine, null)
 {
 }