分享至http://msdn.microsoft.com/en-us/library/k32htktc.aspx Registry Scripting Examples Visual Studio 2013 Other Versions This topic has not yet been rated - Rate this topic The scripting exam... Read More
转载至:http://blog.csdn.net/chgaowei/article/details/6658260什么是数据驱动编程前言:最近在学习《Unix编程艺术》。以前粗略的翻过,以为是介绍unix工具的。现在认真的看了下,原来是介绍设计原则的。它的核心就是第一章介绍的unix的哲学以及17个... Read More
1.设计接口类: public interface IBase{ void Somefun();}2.设计扩展插件类: class PluginCls:IBase{ public void Somefun() { Console.WriteLine("hello ,i am derived class"); }}3.主程序设计: ... Read More