A public class PrintingArgs {
private EventArgs eventArgs;
public PrintingArgs(EventArgs ea) {
this.eventArgs = ea;
}
public EventArgs Args
{
get { return eventArgs;
}
}
}
B public class PrintingArgs : EventArgs {
private int copies;
public PrintingArgs(int numberOfCopies) {
this.copies = numberOfCopies;
}
public int Copies {
get { return this.copies;
}
}
}
C public class PrintingArgs : EventArgs {
private int copies;
}
D public class PrintingArgs {
private int copies;
public PrintingArgs(int numberOfCopies) {
this.copies = numberOfCopies;
}
public int Copies {
"A Composite Solution With Just One Click" - Certification Guaranteed 273 Microsoft 70-536 Exam
get { return this.copies;
}
}
}