2 using System.Collections.Generic;
19 public IToy Toy {
get; set; }
24 public string Name {
get {
return Toy.
Name; } }
Common interface for all toy implementations. The abstract class ToyBase implements this interface...
EventArgs for events of IToy objects
ToyEventArgs()
Initializes a new instance of the ToyEventArgs class.
new string Name
Gets or sets the Name of the IToy.
ToyEventArgs(IToy Toy)
Initializes a new instance of the ToyEventArgs class.