C#
文章平均质量分 76
dhnigel
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLite简介,C#调用SQLite
当我们用到海量数据时一般会用Oracle,SQL Server,DB2,Sybase,MySQL等数据库来保存和管理数据.如果只是程序中需要保存少量数据的话直接整到注册表里,或者保存到一个XML文件中.那如果数据量刚好不多不少,用Oracle这样的数据库有点小题大作,没有必要.有个XML保存的话存取速度又比较慢.咋整呢?这时用SQLite这个小型的嵌入式数据库就是非常理想的选择.它用起来也很简单方转载 2013-05-15 13:53:40 · 426 阅读 · 0 评论 -
一个字典生成类
public class DicCreater { public DicCreater(char[] charExpression,string savePath) { this.charExpression = charExpression; this.savePath = savePath;原创 2013-12-19 17:06:56 · 520 阅读 · 0 评论 -
大整数加法初稿--未完成
public class BigInt { const string PLUS_SYMBOL = "+"; const string MINUS_SYMBOL = "-"; public static string Add(string intA, string intB) { bool flag;原创 2013-12-25 09:52:07 · 502 阅读 · 0 评论 -
Stopwatch示例
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); //实例化Stopwatch List resultList = new List(); for (int n = 0; n < 100; n++) {转载 2014-02-11 12:56:31 · 568 阅读 · 0 评论 -
WINCE 电池状态(C#)
WINCE 电池状态(C#) 分类: 电量 2013-04-18 12:08 397人阅读 评论(1)收藏 举报Wince电量 根据网上搜集资料,最后整理 分享下[csharp] view plaincopyprint?using System; using System.Linq; using System.Coll转载 2014-03-27 20:44:36 · 701 阅读 · 0 评论 -
计算机信息检测
public void InsertInfo(string Key, ref ListView lst, bool DontInsertNull) { lst.Items.Clear(); ManagementObjectSearcher searcher = new ManagementObjectSearcher("sele原创 2014-03-21 11:44:57 · 560 阅读 · 0 评论 -
系统优化
private void SetRegValue(string str) { RegistryKey reg; switch (str) { case"开机和关机": reg = Registry.CurrentUser;原创 2014-03-21 11:50:04 · 502 阅读 · 0 评论 -
Windows Update
6down voteaccepted Add a Reference to WUApiLib to your C# project.using WUApiLib;protected override void OnLoad(EventArgs e){ base.OnLoad(e); UpdateSession uSession = new UpdateSes原创 2014-03-26 17:52:39 · 679 阅读 · 0 评论
分享