Gang of Four

  • Thread starter Thread starter John Malkovich
  • Start date Start date
J

John Malkovich

Preparing to take my 70-306 test and saw a reference to Design
patterns. How important is this topic to taking the test? Most of
the study material jumps back and forth from VB.net and C++, but
Design Patterns doesn't say much about VB.net. Are these patterns
universal or just for C++?

Thanks,
 
Hi John!

Preparing to take my 70-306 test and saw a reference to Design
patterns. How important is this topic to taking the test? Most of
the study material jumps back and forth from VB.net and C++, but
Design Patterns doesn't say much about VB.net. Are these patterns
universal or just for C++?

These Patterns are universal. For .NET-Implementations see:

Illustrated GOF Design Patterns in C#
http://www.codeproject.com/csharp/csdespat_1.asp
http://www.codeproject.com/csharp/csdespat_2.asp
http://www.codeproject.com/csharp/csdespat_3.asp
http://www.codeproject.com/csharp/csdespat_4.asp
http://www.codeproject.com/csharp/csdespat_5.asp
http://www.codeproject.com/csharp/csdespat_6.asp

You may also have a look at

http://www.microsoft.com/resources/practices/

a great resource for patterns in .NET.

Cheers

Arne Janning
 
John,
In addition to the other comments next month's MSDN magazine has an article
on common GOF design patterns, plus how they've been implemented in the
Framework itself.

http://msdn.microsoft.com/msdnmag/issues/05/07/default.aspx

Unfortunately the article is not available on-line yet.

Hope this helps
Jay

| Preparing to take my 70-306 test and saw a reference to Design
| patterns. How important is this topic to taking the test? Most of
| the study material jumps back and forth from VB.net and C++, but
| Design Patterns doesn't say much about VB.net. Are these patterns
| universal or just for C++?
|
| Thanks,
 
One of the outstanding things about design patterns are their language
agnostic principles.

A good understanding of them is of paramount importance for any programmer
who want's to understand and create better architectures.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top