Design Patterns

What kind of design patterns can be used for C# development projects?

Questions by dlogsdon

Showing Answers 1 - 6 of 6 Answers

A design pattern is not code, per se, but a "plan of attack" for solving a common software development problem. The GOF had distilled the design patterns in their book into three main subject areas: Creational, Structural, and Behavioral.

  Was this answer useful?  Yes

learner22

  • Jun 24th, 2008
 

A design pattern can solve many problems by providing a framework for building an application. Existing design patterns make good templates for your objects, allowing you to build software faster. There are several popular design patterns used in C# applications, including the singleton, the decorator, the composite, and the state classes, which can improve the extensibility of your applications and the reuse of your objects.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions