上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 63 下一页
摘要: Link from Code Project: http://www.codeproject.com/KB/dotnet/VSCPinYourIDE.aspxHow to add VSCP to your IDE We can add the VSCP as a tool in the IDE so it will be very easy to access the VSCP from th... 阅读全文
posted @ 2010-04-09 23:02 能巴 阅读(596) 评论(0) 推荐(0) 编辑
摘要: As we know, MFC, WPF, or any mature application development framework, they provide XX_click, XX_doubleClick for either whole view / form or any controls to let us easily add our event handler. But a ... 阅读全文
posted @ 2010-04-09 13:21 能巴 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 3 years in former project, I felt nothing with CG and 3D Modeling, maybe because the project scope is so centralized to be CAD-interop while NO direct tasks regards with 3D Modeling application itself... 阅读全文
posted @ 2010-04-08 13:13 能巴 阅读(192) 评论(0) 推荐(0) 编辑
摘要: Delegate is very easy to understand. So no need to waste words here. I would like to talk more about Event in C#.1. [Paste from unleashed C#]An event is a delegate with special features in the areas o... 阅读全文
posted @ 2010-04-06 23:13 能巴 阅读(203) 评论(0) 推荐(0) 编辑
摘要: ctrl+TAB: show VS IDE Browser, by which you can get to visit the active file, or active window easily and as a whole. 阅读全文
posted @ 2010-04-06 22:45 能巴 阅读(105) 评论(0) 推荐(0) 编辑
摘要: For C++:Memory analysis tools: 1. C++ memory leak detector - Memory Validator (http://www.softwareverify.com/index.html)2. Other as references: Purify from IBM Performance profiling tools:For C#: Memory analysis tools: As developers, we are often faced with addressing memory leaks in our applicatio 阅读全文
posted @ 2010-04-05 20:30 能巴 阅读(1091) 评论(0) 推荐(0) 编辑
摘要: There is a pdf talking about this in detail (in my skydrive). Here just list some key points:1. To enable polymophyism, we need: a. Add virtual in Base class functions. Yes, it's same as c++ does. b. ... 阅读全文
posted @ 2010-04-05 19:03 能巴 阅读(231) 评论(0) 推荐(0) 编辑
摘要: Things declared outside of a class or struct will default to internal (When you define a data type of some kind (class, struct, enum, etc.) you need not specify an access modifier, but be aware that ... 阅读全文
posted @ 2010-04-02 15:52 能巴 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Using StatementThe using statement obtains one or more resources, executes a statement, and then disposes of the resource. A using statement is translated into three parts:acquisition, usage, and disp... 阅读全文
posted @ 2010-04-02 14:29 能巴 阅读(435) 评论(0) 推荐(0) 编辑
摘要: C# provides a mechanism for defining declarative tags, called attributes, which you can place on certain entities in your source code to specify additional information. The information that attributes... 阅读全文
posted @ 2010-04-01 18:03 能巴 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 63 下一页