倒Net

Net学习,自写运行库,书籍翻译,资料下载

博客园 首页 新随笔 联系 订阅 管理

2010年3月11日 #

摘要: 软件工程与文化激励的关系,试图解决下软件的管理难的问题 阅读全文
posted @ 2010-03-11 12:17 anqincmt 阅读(1498) 评论(8) 推荐(1) 编辑

2008年12月9日 #

摘要: /// /// GenericSingleton provides a generic means of defining a singleton. /// public static class GenericSingleton where T : class { private static int instanceCount; ... 阅读全文
posted @ 2008-12-09 19:12 anqincmt 阅读(534) 评论(1) 推荐(0) 编辑

2008年11月3日 #

摘要: 1.下载VisualStudio2010 此版本微软分成11部分,下载地址如下 VisualStudio2010CTP_11PartsTotal.part01.exe VisualStudio2010CTP_11PartsTotal.part02.rar VisualStudio2010CTP_11PartsTotal.part03.rar http://... 阅读全文
posted @ 2008-11-03 21:50 anqincmt 阅读(607) 评论(1) 推荐(0) 编辑

2008年10月23日 #

摘要: 太简单了,不知道怎么写,直接把代码放在这了: private void test_MouseDown(object sender, MouseButtonEventArgs e) { if (e.Source is TreeViewItem) { if (e.RightButto... 阅读全文
posted @ 2008-10-23 16:02 anqincmt 阅读(2641) 评论(1) 推荐(0) 编辑

2008年10月13日 #

摘要: XAML Custom Classes http://msdn2.microsoft.com/en-us/library/ms753379.aspx Documentation: "XAML Custom Classes." Topics include custom classes in applications vs. assemblies, requirements for a custo... 阅读全文
posted @ 2008-10-13 14:58 anqincmt 阅读(439) 评论(0) 推荐(0) 编辑

2008年9月20日 #

摘要: 堆和栈的区别 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)—由编译器自动分配释放,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap)—一般由程序员分配释放,若程序员不释放,程序结束时可能由OS回收。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)... 阅读全文
posted @ 2008-09-20 10:03 anqincmt 阅读(186) 评论(0) 推荐(0) 编辑

2008年8月27日 #

摘要: 什么是Windows服务? Windows服务应用程序是一种需要长期运行的应用程序,它对于服务器环境特别适合。它没有用户界面,并且也不会产生任何可视输出。任何用户消息都会被写进Windows事件日志。计算机启动时,服务会自动开始运行。它们不要用户一定登录才运行,它们能在包括这个系统内的任何用户环境下运行。通过服务控制管理器,Windows服务是可控的,可以终止、暂停及当需要时启动。 Wind... 阅读全文
posted @ 2008-08-27 19:46 anqincmt 阅读(2597) 评论(3) 推荐(0) 编辑

2008年8月13日 #

摘要: 在VS2008中,使用USB转串口发送字符,当拔下设备再插上,串口在使用的途中会抛出错误,用Try..Catch都无法捕获. 在 System.UnauthorizedAccessException 中第一次偶然出现的“System.dll”类型的异常 “Gosun.SMC.SMS.WindowService.exe”(托管): 已加载“C:"Windows"assembly"GAC_MSIL"S... 阅读全文
posted @ 2008-08-13 14:37 anqincmt 阅读(3682) 评论(12) 推荐(0) 编辑

2008年3月28日 #

摘要: 阅读全文
posted @ 2008-03-28 10:01 anqincmt 阅读(244) 评论(1) 推荐(0) 编辑

2007年12月31日 #

摘要: DotNetMagic 5.4.0破解 阅读全文
posted @ 2007-12-31 18:02 anqincmt 阅读(1560) 评论(2) 推荐(0) 编辑