随笔分类 - 技术翻译
摘要:Writing Your Own jQuery Plugins原文地址:http://blog.teamtreehouse.com/writing-your-own-jquery-pluginsjQuery是一个优秀的javascript库。它不但拥有良好的跨浏览器兼容性,容易学习掌握,还可以轻而易举的为你的网站添加有趣的交互。同时,大量的jQuery插件能够让你随心所欲的完成你想要完成的工作。然而在平常的工作中,并不是总能够找到可以完全满足需求的插件,或者你想要将一些常用的功能封装以便保证项目的可重用性。在这些情形下,编写自己的jQuery插件是一个很好的满足需求的手段。其实,编写jQuer
阅读全文
摘要:Creating your own MVC View Engine For MVC Application原文链接:http://www.codeproject.com/Articles/294297/Creating-your-own-MVC-View-Engine-into-MVC-Applica简介(Introduction):The View engines used in ASP.NET MVC Framework are the Razor View Engine and Web Form View Engine. Razor View engine used .cshtml an
阅读全文
摘要:The SOLID Principles in C# – Dependency Inversion原文地址:http://www.remondo.net/solid-principles-csharp-dependency-inversion/The last post in theSOLID by Example seriesdeals with the Dependency Inversion Principle (DIP). It states that high-level classes should not depend on low-level classes. Both sho
阅读全文
摘要:The SOLID Principles in C# – Interface Segregation原文地址:http://www.remondo.net/solid-principles-csharp-interface-segregation/The fourth post in theSOLID by Example seriesdeals with the Interface Segregation Principle (ISP). It states that clients should not be forced to implement interfaces they don’
阅读全文
摘要:The SOLID Principles in C# – Liskov Substitution原文地址:http://www.remondo.net/solid-principles-csharp-liskov-substitution/The third post in theSOLID by Example seriesdeals with the Liskov Substitution Principle (LSP). It states that derived classes must be substitutable for their base classes. The pri
阅读全文
摘要:The SOLID Principles in C# – Open / Closed原文链接:http://www.remondo.net/solid-principles-csharp-open-closed/The second post in theSOLID by Example seriesdeals with the Open / Closed Principle (OCP). This is the notion that an object should be open for extension, but closed for modification.SOLID示例代码系列
阅读全文
摘要:The SOLID Principles in C# — Single Responsibility原文链接:http://www.remondo.net/solid-principles-csharp-single-responsibility/For us developersS.O.L.I.D.is a five letter acronym with each letter pointing to a basic principle of good Object Oriented Design. The principle set was introduced almost twent
阅读全文