127.如何把一个 Array复制到ArrayList里?
a.string[]s={ “111”,“22222”};ArrayList list=newArrayList(); list.AddRange(s);
b.string[]s={ “111”,“22222”};ArrayList list=newArrayList(s);
128.请编程遍历WinForm页面上所有TextBox控件并给它赋值为string.Empty?
foreach (System.Windows.Forms.Control control in this.Controls)
{
if (control is System.Windows.Forms.TextBox)
{
System.Windows.Forms.TextBox tb = (System.Windows.Forms.TextBox)control ;
tb.Text = String.Empty ; }
}
129.有一个8个数的数组{1,2,3,3,4,5,6,6},计算其中不重复数字的个数。
int values = {1,2,3,3,4,5,6,6};
HashSet set = new HashSet();
foreach(int i in values)
{set.Add(i);}
Console.WriteLine(set.Count)
130.public static const;int A= 1;这段代码有错误么?
a.错误,const 不能被修饰为 static
b.因为定义为常量(const)后就是静态的(static)
131.编写一个单例(Singleton)类?
a.把构造函数设置为 private
WEB 面试题(七) ASP.NET代码编程
最新推荐文章于 2021-01-03 12:58:30 发布
本文涵盖了ASP.NET编程中的一些面试问题,包括如何将Array复制到ArrayList,遍历WinForm页面上的TextBox控件并清空其内容,计算数组中不重复数字的数量,理解const与static的使用,实现Singleton模式,以及探讨引用类型与值类型的区别。
摘要由CSDN通过智能技术生成