GeekArticles
Microsoft
Code SamplesDesigning an API with the Visual Studio 2005 Class Designer
Author: msdn.microsoft.com |
Published: 10th Aug 2005 |
Visited: 189 times |
Add CommentFiled in: Code SamplesLearn how to use the Visual Studio 2005 Class Designer to plan and diagram an API, following the logical progression from class analysis to class design.
Read Article Sponsored Links
Related Articles
• Swing Extreme Testing - The ShowerThread Class The ShowerThread Class
Since SaveAsDialog.show() blocks, we cannot call this from our main thread; instead we spawn a new thread. This thread could just be an anonymous inner class in the init()metho ...
• Building a Visual Studio DebuggerVisualizer with a Custom Serializer For most any Serializeable object, making a DebuggerVisualizer is exceeding simple and examples abound. However, if you are trying to build a DebuggerVisualizer for an object which is not Serializable or takes too long to Serialize and Deserialize, things are not quite so simp ...