本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- sichunli_030
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- nychen2000
- ajinn
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
C#.NET对注册表的常用操作(增加项,判断指定项是否存在,增加键(键的名称,键的数值),判断指定的键是否存在)
建立一个对注册表的常用操作的工具类。在HKEY_LOCAL_MACHINE\SOFTWARE下,增加项,判断指定项是否存在,增加键(键的名称,键的数值),判断指定的键是否存在
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//倒入必须的命名空间
using M ...
DateTime.Compare(t1,t2)比较两个日期大小
DateTime.Compare(t1,t2)比较两个日期大小,排前面的小,排在后面的大,比如:2011-2-1就小于2012-3-2返回值小于零:t1 小于 t2。返回值等于零: t1 等于 t2。返回值大于零:t1 大于 t2。
如:using System;
using System.Collections.Generic;
using System.Linq;
using Syste ...
使用IConfigurationSectionHandler在web.config中增加自定义配置
一. 场景 这里仅举一个简单应用的例子,我希望在web.config里面增加网站的基本信息,如:网站名称,网站版本号,是否将网站暂时关闭等。二. 基本实现方法
需要建立一个类项目Tristan.SeeCustomConfig,和一个Web站点用来测试,如下所示
1. 定义配置节点对应的类:SiteSetting 代码片段:using System;
using System.Collect ...
.NET中yield关键字的用法
yield在迭代器块中用于向枚举数对象提供值或发出迭代结束信号。它的形式为下列之一:
yield return <expression>;
yield break;
计算表达式并以枚举数对象值的形式返回;expression 必须可以隐式转换为迭代器的 yield 类型。
yield 语句只能出现在
IEnumerable 接口---实现该接口里的成员的类,可以使用foreach循环访问集合
IEnumerable 接口支持对非泛型集合的简单迭代。 实现该接口里的成员的类,可以使用foreach循环访问集合(VB为For Each)。
备注
IEnumerator 是所有非泛型枚举数的基接口。
有关此接口的泛形版本,请参见 IEnumerator<(Of <(T>)>)。
C# 语言的 foreach 语句(在 Visual Basic 中为 for ...
stardict字典文件格式识别类
usingSystem;usingSystem.Collections.Generic;usingSystem.IO;usingSystem.Linq;usingSystem.Text;namespacecn.Laiyunqing{publicclassnStarDict{privatestringidxFile;privatestringdictFile;publicnStarDict(st ...