Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UpdatableVisual3DList{TVisual}"/> class.
 /// </summary>
 /// <param name="newVisualHandler">The delegate that identifies the method to call whne a new TVisual
 /// needs to be initialized.  This parameter can be null if no initialization is required.</param>
 public UpdatableVisual3DList(NewVisualHandler newVisualHandler)
 {
     this.newVisualHandler = newVisualHandler;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UpdatableVisual3DDictionary{TKey,TVisual}"/> class.
 /// </summary>
 /// <param name="newVisualHandler">The delegate that identifies the method to call when a new TVisual
 /// needs to be initialized.  This parameter can be null if no initialization is required.</param>
 public UpdatableVisual3DDictionary(NewVisualHandler newVisualHandler)
 {
     this.newVisualHandler = newVisualHandler;
 }