MCPD70-536(C#)

摘要: 匿名方法(匿名委托)和命名方法
阅读全文
posted @ 2008-06-28 17:08 李涛 阅读(19) | 评论 (0)  编辑
摘要: 多级串行化阅读全文
posted @ 2008-05-12 00:12 李涛 阅读(12) | 评论 (0)  编辑
摘要: 串行化和并行化阅读全文
posted @ 2008-04-24 00:59 李涛 阅读(30) | 评论 (0)  编辑
摘要: 如何在桌面上创建“音量”的快捷方式阅读全文
posted @ 2008-04-21 01:36 李涛 阅读(13) | 评论 (0)  编辑
摘要: 在控制台下锁定系统的方法 阅读全文
posted @ 2008-04-21 01:20 李涛 阅读(40) | 评论 (0)  编辑
摘要: HOW TO:使用C# 写入事件日志阅读全文
posted @ 2008-04-20 01:50 李涛 阅读(73) | 评论 (0)  编辑
摘要: ProcessModule类
ProcessModuleCollection类阅读全文
posted @ 2008-04-19 23:47 李涛 阅读(19) | 评论 (0)  编辑
摘要: WindowsPrincipal类阅读全文
posted @ 2008-04-19 23:45 李涛 阅读(10) | 评论 (0)  编辑
摘要: ManagementObjectSearcher类阅读全文
posted @ 2008-04-19 05:28 李涛 阅读(12) | 评论 (0)  编辑
摘要: AppDomain阅读全文
posted @ 2008-04-19 04:55 李涛 阅读(23) | 评论 (0)  编辑
摘要: BitVector32 MemoryStream BufferedStream阅读全文
posted @ 2008-04-19 04:03 李涛 阅读(36) | 评论 (0)  编辑
摘要: DriveType 枚举
DriveType 供 DriveInfo 类使用,指示驱动器类型。它可以与 DriveType 属性一起使用。阅读全文
posted @ 2008-04-18 15:13 李涛 阅读(16) | 评论 (0)  编辑
摘要: System.IO.IsolatedStorage命名空间
IsolatedStorageFile类
IsolatedStorageFileStream类
GZipStream类
DirectoryInfo类
DriveInfo类
FileSystemWatcher类阅读全文
posted @ 2008-04-18 13:57 李涛 阅读(42) | 评论 (0)  编辑
摘要: System命名空间中常用的接口(interface)阅读全文
posted @ 2008-04-18 03:49 李涛 阅读(14) | 评论 (0)  编辑
摘要: 继承和构造函数阅读全文
posted @ 2008-04-18 03:06 李涛 阅读(16) | 评论 (0)  编辑
摘要: System.Windows.Forms.Timer类阅读全文
posted @ 2008-04-18 02:58 李涛 阅读(35) | 评论 (0)  编辑
摘要: object[] types = { a, b, c, d, e, s, ex };
string s = "Microsoft .NET Framework 2.0 Application Development Foundation";
string[] sa = s.Split(' ');
Array.Sort(sa);
s = string.Join(" ", sa);
Console.WriteLine(s);
//打印 .NET 2.0 Application Development Foundation Framework Microsoft
Console.ReadKey();阅读全文
posted @ 2008-04-18 01:58 李涛 阅读(14) | 评论 (0)  编辑
摘要: ArrayList values = new ArrayList();
values.Add(new PositionData("Microsoft", "Msft"));
values.Add(new PositionData("Intel", "Intc"));
values.Add(new PositionData("Dell", "Dell"));
阅读全文
posted @ 2008-04-18 01:47 李涛 阅读(18) | 评论 (0)  编辑
摘要: enum和struct
枚举和结构都是值类型阅读全文
posted @ 2008-04-18 01:44 李涛 阅读(22) | 评论 (0)  编辑