文章分类 -  MCPD70-536(C#)

摘要:匿名方法(匿名委托)和命名方法 阅读全文
posted @ 2008-06-28 17:08 李涛 阅读(152) 评论(0) 推荐(0)
摘要:多级串行化 阅读全文
posted @ 2008-05-12 00:12 李涛 阅读(146) 评论(0) 推荐(0)
摘要:串行化和并行化 阅读全文
posted @ 2008-04-24 00:59 李涛 阅读(183) 评论(0) 推荐(0)
摘要:如何在桌面上创建“音量”的快捷方式 阅读全文
posted @ 2008-04-21 01:36 李涛 阅读(103) 评论(0) 推荐(0)
摘要:在控制台下锁定系统的方法 阅读全文
posted @ 2008-04-21 01:20 李涛 阅读(187) 评论(0) 推荐(0)
摘要:HOW TO:使用C# 写入事件日志 阅读全文
posted @ 2008-04-20 01:50 李涛 阅读(245) 评论(0) 推荐(0)
摘要:ProcessModule类 ProcessModuleCollection类 阅读全文
posted @ 2008-04-19 23:47 李涛 阅读(144) 评论(0) 推荐(0)
摘要:WindowsPrincipal类 阅读全文
posted @ 2008-04-19 23:45 李涛 阅读(143) 评论(0) 推荐(0)
摘要:ManagementObjectSearcher类 阅读全文
posted @ 2008-04-19 05:28 李涛 阅读(103) 评论(0) 推荐(0)
摘要:AppDomain 阅读全文
posted @ 2008-04-19 04:55 李涛 阅读(136) 评论(0) 推荐(0)
摘要:BitVector32 MemoryStream BufferedStream 阅读全文
posted @ 2008-04-19 04:03 李涛 阅读(186) 评论(0) 推荐(0)
摘要:DriveType 枚举 DriveType 供 DriveInfo 类使用,指示驱动器类型。它可以与 DriveType 属性一起使用。 阅读全文
posted @ 2008-04-18 15:13 李涛 阅读(116) 评论(0) 推荐(0)
摘要:System.IO.IsolatedStorage命名空间 IsolatedStorageFile类 IsolatedStorageFileStream类 GZipStream类 DirectoryInfo类 DriveInfo类 FileSystemWatcher类 阅读全文
posted @ 2008-04-18 13:57 李涛 阅读(194) 评论(0) 推荐(0)
摘要:System命名空间中常用的接口(interface) 阅读全文
posted @ 2008-04-18 03:49 李涛 阅读(91) 评论(0) 推荐(0)
摘要:继承和构造函数 阅读全文
posted @ 2008-04-18 03:06 李涛 阅读(120) 评论(0) 推荐(0)
摘要:System.Windows.Forms.Timer类 阅读全文
posted @ 2008-04-18 02:58 李涛 阅读(168) 评论(0) 推荐(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 李涛 阅读(126) 评论(0) 推荐(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 李涛 阅读(138) 评论(0) 推荐(0)
摘要:enum和struct 枚举和结构都是值类型 阅读全文
posted @ 2008-04-18 01:44 李涛 阅读(135) 评论(0) 推荐(0)