马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你可以先看看这篇文章(软微学院生涯-三朝元老经验谈),打不开再跟我说。(我的意思是想让她自己先稍微了解一下到底现在各个方向学的工具以及以后要做的工具大概是什么,因为喜欢做什么样的事其实自己最清楚的)1.界说泛型类
usingSystem;
usingSystem.Collections;
usingSystem.Collections.Generic;
usingSystem.Text;
namespaceWindowsApplication1
{
classBList<T>
{
ArrayListarr=newArrayList();
publicTthis[inti]
{
get
{
return(T)arr[i];
}
set
{
arr.Add(value);
}
}
publicvoidAdd(Tp_obj)
{
arr.Add(p_obj);
}
publicintCount
{
get
{
returnarr.Count;
}
}
}
}
2.挪用(放就任意的窗体事务中)
privatevoidbutton2_Click(objectsender,EventArgse)
{
BList<int>_list=newBList<int>();//<int>内里能够交换恣意已知范例
for(inti=0;i<10;i++)
{
_list.Add(i);
}
for(inti=0;i<_list.Count;i++)
MessageBox.Show(_list[i].ToString());
}
在经过全球个人PC市场占有90%的微软对asp.net不断优化与整合后,asp.net与微软自身平台的动用上更加的高效,加上asp.net在应用上非常容易上手,相信asp.net仍会是最多客户选用的脚本语言,并会在未来几年继续领跑。 |