判断题在执行任何计算之前,使用Parse方法把文本值转换为数值。()

您可能感兴趣的试卷

你可能感兴趣的试题

9.单项选择题在.NET框架类库中,所有与多线程机制应用相关的类都放在()命名空间中。

A.System.SysThread
B.System.Thread
C.System.Threading
D.NetException

10.单项选择题委托类型DG1的定义为delegate float DG1(int a,ref double b);那么下列委托对象的创建表达式中合法的有:()。

A.DG  1dg1=delegate {return  0.3;};
B.DG  1dg2=delegate {return  a;};
C.DG  1dg3=delegate (int  a,ref  double  b) {return  a;};
D.DG  1dg4=delegate (int  a,ref  double  b) {return  a/b;};