zoukankan      html  css  js  c++  java
  • AllInOne Code Framework (http://cfx.codeplex.com)

    All-In-One Code Framework code-name AIO delineates the framework and skeleton of most Microsoft development techniques (e.g. COM, Data Access, IPC) using typical sample codes in different programming languages (e.g. Visual C#, VB.NET, Visual C++). For instance, the code example ATLActiveXDll shows the skeleton of an ATL ActiveX DLL as its name implies. Each example is elaborately selected, composed, and documented to demonstrate one frequently-asked, tested or used scenario based on our experience as support engineers. If you are a software developer, you can fill the skeleton with blood, muscle and soul. If you are a software tester or a support engineer like us, you may extend the sample codes a little to fit your specific test scenario or refer your customer to this project if the customer's question coincides with what we collected. 

    Project Scope


    The target of the project is to sketch the skeleton of most Microsoft development techniques using typical sample codes that are frequently-asked, tested or used. You can imagine each technique as a building. The foundation of the building (the basics of the technique) and the facilities inside the building (the details of the technique) are not in the scope. Instead, you will find the structure of the building (the framework and skeleton of the technique) in the scope.

    Features

    • All-In-One: All examples for all Microsoft development techniques are in one Visual Studio solution. All source codes, documents, and reference materials can be viewed or tested in one instance of Visual Studio.
    • Uniform:
      • All examples follow a uniform naming convention. The convention applies to the name of the projects, variables, methods, types, etc.
      • All examples have a uniform style of coding, commenting and documentation. For instance, each code example has a ReadMe.txt file that documents the example. The content of ReadMe.txt follows this structure: Use (the purpose of the example), Project Relation (the relation between the current example and the rest), Build (how to build the example), Creation (the detailed steps to create such a example), and References (the reference materials).
      • All examples of the same technique manage to provide a uniform output or export. For instance, ATLActiveXDll, ATLActiveXExe, CSDllCOMServer, VBDllCOMServer, MFCActiveX, MFCSafeActiveX, CSActiveX, VBActiveX are COM components in different forms. However, they export a uniform set of methods, properties and events.
    • Mutually Dependent: The code examples are mutually dependent or related, and many are efficiently reused by other examples to demonstrate the techniques. For instance, CppDllExport is a sample C++ DLL that exports the symbols of data, functions and classes. CppImplicitlyLinkDll depends on CppDllExport to demonstrate the implicit link of a DLL; CppDelayloadDll delay-loads the DLL; CppLoadLibrary dynamically loads the DLL; CSPInvokeDll uses CppDllExport to show the use of .NET Platform Invocation Service.
    • Source of Examples: The examples are refined out of our supports for developers in the newsgroups and the forums. You can think of the project as a collection of most frequently requested test scenarios in contrast with FAQs.

    The above four features are highlighted because most sample code sites like www.codeproject.com and MSDN lack them. Besides, the code examples in All-In-One Code Framework are typical, extensible, structured, complete, and easy to understand.

  • 相关阅读:
    HTML5——WEB存储学习笔记
    show()与showDialog()的区别
    如何为winform程序打包(图解)
    Winform打包程序制作的快捷方式指向错误的位置(指向安装包文件)
    HTML5 ——range学习笔记
    引用 Eclipse异常退出的解决办法
    sql查询数据库中所有包含要查询内容的存储过程、视图等
    sql查询数据库中所有包含要查询内容的存储过程、驶入
    SQL Union和SQL Union All用法
    sql查询数据库所有表(select * from sysobjects )
  • 原文地址:https://www.cnblogs.com/Jialiang/p/AIO.html
Copyright © 2011-2022 走看看