码迷,mamicode.com
首页 > 其他好文 > 详细

工作细微基础点

时间:2015-04-22 18:03:07      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
1 Hashtable table = new Hashtable();
2          table.Add("dsa", "das");
3          Console.WriteLine(table);//System.Collections.Hashtable//输出的是类型
4          Console.WriteLine(table.Keys);//System.Collections.Hashtable+KeyCollection
5          Console.WriteLine(table.Values); //System.Collections.Hashtable+ValueCollection
6          Console.WriteLine(table.Keys.Count);  //1
7          Console.ReadKey();
Hash输出类型

ashx用到session

空间using System.Web.SessionState;   ashx类再继承IRequiresSessionState

foreach for

foreach是对集合(无序)arraylist,list,hastable,dictionary进行遍历,for对datatable, array(有序)
 

工作细微基础点

标签:

原文地址:http://www.cnblogs.com/leee/p/4437343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!