单项选择题Timer组件位于()命名空间。

A.System.Web.UI
B.System.Windows.Forms
C.System.Timers
D.System.Windows


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题将线程设置成最高优先级,应让其Priority属性的值为()。

A.ThreadPriority. Highest
B.ThreadPriority. AboveNormal
C.ThreadPriority. Lowest
D.ThreadPriority. Normal

2.单项选择题下面()让线程休眠1分钟。 

A.Thread.Sleep(1)
B.Thread.Sleep(60)
C.Thread.Sleep(1000)
D.Thread.Sleep(60000)

3.单项选择题让线程开始运行的方法是()。 

A.Run()
B.Suspend ()
C.Start()
D.Resume

4.单项选择题Thread类在()命名空间中。

A.System.Threads
B.System.Threading
C.System.Thread
D.System.Running

10.多项选择题使用StreamWriter以追加的方式向文件中写入数据,可以通过下面()方式实现。

A.Dim sw As StreamWriter = New StreamWriter(path, true)
B.Dim sw As StreamWriter = New StreamWriter(path, false)
C.Dim sw As StreamWriter = File.Append(path)
D.Dim sw As StreamWriter = File.AppendText(path)