stand on the shoulders of giants
上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: Error: Constant value '2147483648' cannot be converted to a 'int' (use 'unchecked' syntax to override) Reason: 计算机在内部用的是补码, 所以: byte类型的范围:(负数最小值,1既是符号位又是值位) Dec:      &... 阅读全文
posted @ 2010-08-19 15:32 DylanWind 阅读(1558) 评论(0) 推荐(0) 编辑
摘要: 如下代码示例如何在C#中取得Win32的GetLastError. // this function is just for fun [DllImport("winusb.dll", SetLastError = true)] public static extern bool WinUsb_SetPowerPolicy(IntPtr InterfaceHandle, UInt32 Policy... 阅读全文
posted @ 2010-08-04 18:40 DylanWind 阅读(860) 评论(0) 推荐(0) 编辑
摘要: The WMI technique is very powerful for system related activities. They provide operating system interface. The following code can be used to close instance of visual studio on remote machine provided ... 阅读全文
posted @ 2010-08-04 18:37 DylanWind 阅读(373) 评论(0) 推荐(0) 编辑
摘要: If your XML file has xmlns, you may be run into problem when get some XML data with LINQ. How to fix this? 1. prepend the namespace XNamespace ns = doc.Root.Name.Namespace; var cars2 = from d in doc... 阅读全文
posted @ 2010-06-29 16:36 DylanWind 阅读(303) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/library/ee730343.aspx (Kraig Brockschmidt, Program Manager, Microsoft Corporation) 过去二十年,微软开发了很多data access solution. 你可能已经注意到Some technologies have been retired, but most o... 阅读全文
posted @ 2010-06-07 16:44 DylanWind 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 问题来源 使用方法Convert.ToBase64String时候不知所以然。 所以在网上查了点资料: 浅谈Base64编码 我打赌当你见到Base64这个词的时候你会觉得在哪里见过,因为在你能够上网看到这篇文章的时候你已经在后台使用它了。如果您对二进制数有所了解,你就可以开始读它了。 打开一封Email,查看其原始信息(您可以通过收取、导出该邮件用文本编辑器查看)。你会看到类似这样的一个... 阅读全文
posted @ 2010-06-04 19:36 DylanWind 阅读(308) 评论(0) 推荐(1) 编辑
摘要: Reference: 正则表达式三十分钟入门: http://deerchao.net/tutorials/regex/regex.htm 在线测试工具: regexlib(http://regexlib.com/default.aspx) 吐血推荐,比较狠的一个工具:           ... 阅读全文
posted @ 2010-06-03 16:16 DylanWind 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Creational Patterns Abstract Factory  Creates an instance of several families of classes Builder  Separates object construction from its representation Factory Method  Creates an insta... 阅读全文
posted @ 2010-06-01 15:51 DylanWind 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 浅议windows内存管理这里仅是对windows内存的简单介绍,适合编写windows应用程序的人阅读,主要参考《windows核心编程》及《深入解析windows操作系统》第四版。对windows内存管理的内部机制,将在以后加以介绍。首先,用户用到的内存都是虚拟内存,windows内存管理器负责将虚拟地址转译成物理内存。对于32位机器,虚拟地址空间就是4G大小,用4个byte就可以覆盖,因此,... 阅读全文
posted @ 2010-05-20 00:07 DylanWind 阅读(1293) 评论(0) 推荐(2) 编辑
摘要: MPF bug: creating the custom ProjectConfig classOld design: MPF ConfigProvider.cs:namespace Microsoft.VisualStudio.Package{public class ConfigProvider : IVsCfgProvider2, IVsProjectCfgProvider, IVsExte... 阅读全文
posted @ 2010-05-14 01:24 DylanWind 阅读(280) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页