- 0
- 0
- 约1.92万字
- 约 13页
- 2016-12-21 发布于江苏
- 举报
Microsoft .NET Framework 2.0 and 3.5 Application Development Foundation
Number: 70-536
QUESTION 1
You are developing a custom event handler to automatically print all open documents. The event handler helps specify the number of copies to be printed. You need to develop a custom event arguments class to pass as a parameter to the event handler.
Which code segment should you use?
A. public class PrintingArgs
{
private int copies;
public PrintingArgs(int numberOfCopies)
{
this.copies = numberOfCopies;
}
public int Copies
{
get { return this.copies; }
}
} B. pub
原创力文档

文档评论(0)