What are Design Patterns?
Hi, Please expain What all are the advantages of Design Patterns and frequently used design patterns
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Guest UserPosted Nov 5, 2016, 12:50 AM
Design Patterns
https://msdn.microsoft.com/en-us/library/orm-9780596527730-01.aspxBikesh SrivastavaPosted Nov 4, 2016, 2:23 PM
Ananth GPosted Nov 4, 2016, 7:13 AM
Tutorial: Common Design Patterns in C# 4.0
However, you have to take care to select the right pattern for the right problem. If you need to modify the initial pattern too much, this may indicate that it is not adapted to your needs and may in the worst case lead to unmaintainable, complex and inefficient code. The opposite of what you intend when using Design Patterns !!
You may also create your own custom Design Patterns. Whenever you come up with a certain solution that is reusable in a vast majority of your projects, you may decide to abstract a design pattern out of it. Then you may create your own library of patterns and share them within your whole company, thus creating standards and ameliorating maintainability.
I am going to show you how to use the well known Gang of Four (GoF) Design Patterns in C# 4.0 code. Those patterns will work well in any project that uses C# but especially in WPF, WCF, WinForms, ASP.NET projects.
The GoF Design Patterns are divided into 3 categories : Creational Patterns, Structural Patterns and Behavioral Patterns. I am going to explain each GoF Design Pattern in detail and will show you examples of how to write good C# 4.0 code that implement those patterns.
Creational Patterns
Structural Patterns
Behavioral Patterns
Salman BegPosted Nov 4, 2016, 6:53 AM
Ravi PatelPosted Nov 4, 2016, 6:18 AM