Design Patterns C#
Design Patterns C#
Mathias Bartoll
Nori Ahari
Oliver C. Moldez
Department of Computer Science
Mlardalen University
Vsters, Sweden
[email protected]
[email protected]
[email protected]
4 Juni, 2004
Abstract
The idea behind design patterns is to save good object oriented design
solutions and reuse them to solve similar problems. In The early 1990:s
Erich Gamma et al [1] described 23 design patterns, six of which will be
described here.
The new object oriented language C#, presented by Microsoft is strongly
influenced by Java and C++. Still some new and interesting features are
introduced that simplify object oriented design. As it is shown in this work
interfaces can be used to implement patterns such as Adapter and Strategy,
and Events come in handy when the Observer pattern is to be used. However
C# is intended to work together with the .NET platform and is therefore
tightly coupled with some .NET specific issues.
1 Introduction
Object oriented programming has been the dominating style in software development for quite a few years. The intuitive way in which object oriented languages
allow us to divide our code into objects and classes is what makes this style of
programming attractive. Another aim of object oriented program design is to make
code more reusable. After all an object, say for example a chair, will always be
a chair and if we write a chair class for a program, it is likely that we can reuse
that class in another context. It has however been shown that designing reusable
object oriented software is not always that easy. A good software design should,
not only solve existing problems, but also concern future problems. It should make
the program flexible, easy to maintain and to update. Design patterns help us address these issues. The idea is quite simple; we want to document and save design
solutions that have been used and worked for reoccurring problems, in order to use
them again in similar situations. Erich Gamma et. al describe 23 different design
patterns in their book [1]. This book is one of the first publications in the area.
The aim of this work is to take a closer look at how some of the known design
patterns can be implemented in C#, and to investigate whether the new features of
the language in fact do make it easier to design object oriented software. This paper
should not be seen as an introduction to C#. We will briefly go through some of
the features of the language that are relevant to implementing most design patterns,
whereas some other details are omitted. For a more extensive overview of C# the
reader is referred to some of the references at the end of this work.
Since C# is closely related to the .NET platform we will start by a short introduction to the .NET framework in the next chapter. Chapter 3 covers some features
in C#, in chapter 4 we describe six of the design patterns presented by Gamma et.
al [1] and look at how they can be implemented in C#. And finally the work will
be wrapped up by some discussions and conclusions.
2 .NET Framework
2.1 Introduction
The .NET platform is a new development framework providing a new Application
Programming Interface (API), new functionality and new tools for writing Windows and Web applications. But it is not only a development environment, it is also
an entire suite of servers and services, as shown in figure 1 [7], that work together
to deliver solutions to solve todays business problems. One of the main ideas with
.NET is to make the connectivity and interoperability between businesses easier.
In this section we will briefly focus on the main aspects in .NET Framework that
programming languages, including the latest editions of C++ and Visual Basic, use
the .NET environment. However, C# is the first major language designed from the
beginning with .NET in mind.
The .NET Framework is a new development and runtime infrastructure that
changes the development of business applications on the Windows platform. It
includes the Common Language Runtime (CLR) and a comprehensive class library
for building web and Windows applications.
language, it has complete access to the same rich class libraries that are used by
seasoned tools such as Visual Basic and Visual C++. C# itself does not include a
class library.
There are several advantages of sharing libraries across languages. It reduces
learning time when moving from one .NET-supported language to another. It provides a larger body of samples and documentation, because these do not need to be
language specific. It also allows better communication between programmers who
work in different .NET-supported languages.
This part covers some of the key features that the C# language provides for
the developer. You will see that some of these features will be very useful when
implementing design patterns.
3.2.2 Inheritance
Inheritance in C# works in the same fashion as with other object oriented languages. The inherited class can be viewed and treated as the base class but not the
other way around. The syntax for inheriting a class from another is as follows:
class derivedClass : baseClass
Where derivedClass is the name of the new class, and baseClass is the name
of the base class. C# does not allow multiple inheritance, however the concept of
interfaces is introduced to be used instead. Interfaces are described later in chapter
3.5.
3.2.3 Ref and Out Method Arguments
Recognising the fact that pointers are one of the biggest source of bugs when developing software, the concept of pointers, as known in C and C++, does not exist
in C#. It is however still possible to pass reference variables as method arguments
by using the keywords ref and out.
Consider the example of a colour class that contains three member variables
of type integer, namely red, green, and blue. These three variables determine the
value of the colour class based on the RGB standard [6]. Using reference variables
we can retrieve all three values through a single method call. The code would look
something like this:
class colour
{
private int red;
private int green;
private int blue;
public void GetColors(ref int red, ref int green, ref int blue)
{
red = this.red;
green = this.green;
blue = this.blue;
}
}
The
...
int
int
int
The out keyword can be used in the same way, the method signature of the GetColors method would then look like this:
public void GetColors(out int red, out int green, out int blue)
Using the ref and out keywords will inform the compiler that the argument being
passed points to the same place as the variables in the calling code. The difference
between the two is that with the ref keyword the arguments must be initialised
before being passed, otherwise the compiler will generate an error. This means
that ref should preferably be used when the operation carried out in the method
is dependent on the value of the passed argument, thereby forcing the client to a
proper initialisation.
3.2.4 Variable Method Parameters
There are circumstances where the number of arguments to a method is not known
until runtime. An example could be a method that prints a line on a graph by
linking together an arbitrary number of points, passed to it as arguments [6]. This
is possible by using the params keyword and specifying an array in the methods
argument list. In the following code example we assume that the class named Point
has been defined to contain the x and y coordinates of a point.
...
public void DrawLine(params Point[] p) {
for (int i = 0; i < p.GetLength(0); i++)
{
// Draw line
}
}
...
example want to perform some verification on the input from the client before
you let the value of your member variable change. Consider a class containing a
streetAddress member and a zipCode member. In this case it would be a good idea
to verify that the zip code provided by the client is consistent with the classes street
address [6]. This could be done in the following fashion:
class address
{
protected string streetAddress;
protected string zipCode;
public string getZipCode()
{
return (zipCode);
}
public void setZipCode(string zc)
{
// Validate the zip code against a database
zipCode = zc;
}
}
Code at the client side uses the setZipCode method to pass a new zip code to the
class. C# properties provide the same functionality but make the code at the client
side more elegant by letting the private members be accessed as though they were
public, but still allowing the client to perform the necessary validation. Here is the
example above rewritten using properties:
class address
{
protected string streetAddress;
protected string zipCode;
public string ZipCode
{
get
{
return (zipCode);
}
set
{
// Validate the zip code against a database
zipCode = value;
}
}
}
The code at the client side would then look like this:
...
address addr = new address();
addr.Zipcode = "722 28";
string zip = addr.ZipCode;
This way the client doesnt need to know about the existence of the accessor methods.
3.3.2 Arrays
Arrays are, like most other things in C#, objects. All arrays inherit from the System.Array class [6]. The following example illustrates how a simple single dimensional array is instantiated and used.
using System;
int[] MyArray; MyArray = new int [10];
for (int i = 0; i < MyArray.Length; i++)
Console.Writeline(MyArray[i]);
...
Notice how MyArray is declared to hold integer variables at the first line of code.
Like any other object, MyArray should be instantiated using the new keyword before it can be used. This also means that if you have a class that holds an array as a
member variable, the array should be instantiated at some point, for example in the
classes constructor. In the for loop the Length property of the System.Array class is
used to determine the number of iterations. More information about the members
and methods of the Array class can be retrieved from [12].
3.3.3 Indexers
Indexers are a mechanism to let you treat any object as though it was an array. One
example of where this would make sense is a windows listbox class (See MSDN
for more information) that should provide the clients by some methods that enables
them to insert strings into the listbox, or access and modify existing strings. The
Microsoft Foundation Classes (MFC) provides a class called CListBox that lets us
operate on a listbox through member functions such as AddString and InsertString.
In its simplest form the listbox could be viewed as an array of strings. It would be
elegant if we could operate directly onto its string members in the following way:
Just like we have discussed before the code at the client side can now access
members of MyListBox through their index number:
MyListBox lb = new MyListBox();
lb[0] = "some data";
lb[1] = "some other data";
3.4 Attributes
Attributes in C# is a technique to add metadata to your classes. Metadata is declarative information about elements of source code, such as classes, members, method
etc. The information provided by the attribute is stored in the metadata of the element and can be retrieved at runtime by a technique called reflection. The use of
attributes allows you to change the behaviour of an object at runtime, provide information about an object or objects in your application, and to mediate information
to other designers. Attributes can even by useful when debugging.
Attributes were introduced by Microsoft to allow the developer to add declarative information to the source code and to get rid of the DLL hell [8]. Instead
having two files for a component, one that contains the application and another the
application information, attributes add the metadata along with the application assembly. With DLL:s you need both files for the component to function and if one
is lost you could not use the component.
An attribute is a class that you can add to different programming elements,
such as assemblies, objects, struct, enums, constructor, methods, return values,
and delegates. All attributes are derived from the System.Attribute class. There
are two kinds of attributes, intrinsic and custom. Intrinsic attributes are a part of
the CLR and they are the most common used attributes. Custom attributes are
attributes created by developer. When applying an attribute, it must be placed
directly after the using statement and before the class declaration. The formal
syntax of an attribute is:
using System;
[attribute(positional_parameters, name_parameter = value)...]
class myClass {...}
This attribute example tells us that the attribute applies to a class by the parameter
AttributeTargets.class.
using System;
[AttributeUsage(AttributeTargets.Class)]
public class myAttribute :Attribute
{...}
Any attribute can have one or more parameters. Parameters can either be positional
or named. Positional parameters are passed to the attribute constructor and named
parameters are implemented as properties.
using System;
[AttributeUsage(attributeTargets.class)]
public class myAttribute : Attribute
{
public myAttribute(string url) // Positional parameter
{
this.url = url;
}
public string Subject(string subject) // Named parameter
{
get { return subject; }
set { this.subject = subject; }
}
public string Url(string url)
{
get { return url; }
}
private url;
private subject;
}
// Now we apply the attribute to a class
[myAttribute(("http://www.myclassinfo.com") Subject = "myClass")]
class myClass
{
{...}
}
You can have multiple attributes attached to a programming element. You can either stack the attributes on top of each other or you can separate them with commas.
using System;
[myAttribute1(parameter...)]
[myAttribute2(parameter...)]
class myClass
{
{...}
}
// Comma separated example below
using System;
[myAttribute1(parameter...), myAttribute2(parameter...)]
class myClass
{
{...}
}
Attributes can be defined to apply to more than one element type. The or (|)
operator is used to separate the targets.
[AttributeUsage(AttributeTargets.Method
AttributeTargets.Constructor)]
public class myAttribute : System.Attribute { //code here }
Attributes as default are not allowed to be instantiated more then once, but sometimes it can be useful to have several instances of the same attribute.
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class myAttribute : System.Attribute { //code here }
Reflection is used to access the attributes information at runtime as mentioned earlier. The MemberInfo class is used for retrieving information stored by attributes
in the metadata. MemberInfo class is found in System.Reflection namespace.
System.Reflection.MemberInfo[ ] attributeArray;
attributeArray = typeof(myClass).GetCustomsAttributes( );
After getting the array you can iterate through the array to get the information
stored in the attributes.
3.5 Interfaces
One feature not supported by the C# programming language is multiple inheritance. As an example of where multiple inheritances is useful consider the following:
Lets say that you are programming a university application in which you use
an employee class to represent a person employed by the university. A researcher
is a subclass of employee with tasks such as doing experiments and writing papers.
Researchers also sometimes teach courses. There are also other people teaching
courses that are not researchers. Multiple inheritance would have allowed you to
create a new class called something like Teacher and let the researcher class, along
with other employee subclasses who teach courses, inherit both from the employee
and from the Teacher classes. In this case a researcher is an employee, which also
should display the characteristic behaviours of a teacher. C# introduces interfaces
as a built in part of the language to represent behaviours as opposed to classes that
represent objects [6].
An interface is basically a contract between a class and a client that guaranties
that the class implements the methods specified in the interface. In other words,
interfaces contain the public signature of methods, events and properties but it is up
to the class, which is said to implement the interface, to provide the implementation
of these methods. The implementing class inherits from an interface in the same
way as from a base class. An instance of this class can then be casted into the
interface and access its methods. In this way interfaces can be used to reach the
same objectives as with multiple inheritance.
As an example we can crate an interface called ITeach and let the resarcher
class (described above), which also inherits from an employee base class, implement it.
interface ITeach
{
string SetGrade(string studentId);
}
class employee
{
protected int Salary;
public int salary
{
get { return this.Salary; }
set { this.Salary = value; }
}
protected string Emp_ID;
public string emp_ID
{
get { return this.Emp_ID; }
set { this.Emp_ID = value; }
}
}
class reseracher: employee, ITeach
{
public researcher(string id, int sal)
{
emp_ID = id;
salary = sal;
}
public string SetGrade(string studentId)
{
if (studentId == "Martin")
return("A")
else
return("D")
}
}
As mentioned above an instance of the researcher class can be casted into the interface(s) it implements. This means that we can use the is and as operators to see
whether or not a class implements a certain interface or not. The is operator can
be used to see whether the runtime type of an object is the same as another, and
returns a Boolean value. The keyword as is used to cast an object into another
type and returns null if the cast fails. The following example illustrates this:
class MyApp
{
static void main()
{
researcher R = new researcher("Martin", 20000);
if(R is ITeach)
{
ITeach T = (ITeach)R;
T.SetGrade("Nori");
}
// Alternatively
ITeach T = R as ITeach;
if(T != null)
T.SetGrade("Nori");
}
}
In this particular case however it is not necessary to cast R into ITeach. Note how
the researcher class declares the SetGrade method:
public string SetGrade(string studentId)
This means that SetGrade exists in the public namespace of the researcher class
and can be invokeddirectly on an instance of researcher:
R.SetGrade("Nori");
If researcher however had implemented the SetGrade function in the following
way the cast would have been necessary:
string ITeach.SetGrade(string studentId)
Those who are familiar with C++ recognise this error handling technique, but
there are some new features provided by C#. You can declare a finally block to
your error handling code. The finally block provides a way to guarantee that a
peace of code is always executed whether an Exception is thrown or not.
try {
// Code to monitor for exceptions
}
catch (System.Exception e) {
// Code to handle the exception
}
finally {
// Code that always is executed whether
// an exception is thrown or not.
}
Some other new features are as mentioned earlier that all Exceptions derive from
the System.Exception class while in C++ any type can be used as an Exception.
All System-level Exceptions are well defined in Exceptions classes. In C# you
can create and throw your own Exceptions as long as they derive from the System.Exception class. All Exceptions that are caught in the catch block can be
thrown again.
catch (System.Exception cought) {
throw caught;
}
As Liberty [5] states, in the programming language C#, delegates are first-class
objects, fully supported by the language. Using a delegate allows the programmer
to encapsulate a reference to a method inside a delegate object. You can encapsulate any matching method in that delegate without having to know at compile time
which method that will be invoked. A delegate in C# is similar to a function pointer
in C or C++. But unlike function pointers, delegates are object-oriented, type-safe
and secure managed objects. This means that the runtime guarantees that a delegate
points to a valid method and that you dont get errors like invalid address or that
a delegate corrupting the memory of other objects. Furthermore, delegates in C#
can call more than one function; if two delegates are added together, a delegate that
calls both delegates is the result. Because of their more dynamic nature, delegates
are useful when the user may want to change the behaviour of the application. For
example, a collection class implements sorting, it might want to support different
sort orders. The sorting could be controlled based on a delegate that defines the
comparison function.
There are three steps in defining and using delegates: declaration, instantiation,
and invocation. Delegates are declared using the keyword delegate, followed by a
return type, the signature and the parameters. In the following example we define
a class with a callback function using a delegate.
using System;
class TestDelegate
{
// 1. Define a callback prototype - Declaration
delegate void MsgHandler(string strMsg);
// 2. Define callback method
void OnMsg(string strMsg)
{
Console.WriteLine(strMsg);
}
public static void Main( )
{
TestDelegate t = new TestDelegate( );
// 3. Wire up our callback method - Instantiation
MsgHandler msgDelegate = new MsgHandler (t.OnMsg);
// 4. Invoke the callback method indirectly - Invocation
msgDelegate("Hello, Delegate.");
}
}
When the delegate is defined it can be instantiated with any method that matches
the delegates signature and return type. Once instantiated, the delegate reference
can be used directly as a method as in the example above.
When designing your delegates, it is important to consider when to create them.
C# allows you to define the appropriate delegates as static members. In that case
the client doesnt have to instantiate the delegate each time it will be used. However
the drawback of a static member is that the delegate is always created, even if it is
never used. It would be better if the delegate were created on the fly, as needed.
This can be done by replacing the static functions with properties [6].
3.7.2 Events
A class can use an event to notify another class (or other classes) that something
has happened. In GUIs an event might be a menu selection, but events are well
suited for any asynchronous operation, such as a file being changed. Events are
something that happens in an unpredictable order and the system must respond to
it.
In C#, events follow the publish-subscribe design pattern in which a class can
publish a set of events and other classes can subscribe to the specific events. When
an event is raised by the publishing class, the runtime takes care of notifying all the
subscribed classes [6].
The implementation of events in C# is done by delegates. Liberty [5] describes
it as The publishing class defines a delegate that the subscribing classes must implement. When the event is raised, the subscribing classs methods are invoked
through the delegate. However, keep in mind that event handlers in .NET Framework has some grammatical rules. The event handlers always return void and it
must take two arguments that represent objects. The first argument is the object
that raised the event (the publisher) and the second object contains the information
about the event. The second object with information must derive from the .NET
Frameworks EventArgs class. This class is the base class for all event data. It
contains a static readonly property called Empty, which represents an event with
no state.
Suppose you want to create a class named Clock, which will use events to notify each subscriber when the time changes value by one second. The keyword
event controls how the subscribing classes access the event property. The declaration of the event and the event-handler delegate are as follow [5]:
public event SecondChangeEventHandler TriggerSecondChange;
The declaration above consists of an event called TriggerSecondChange and is
implemented by a delegate of type SecondChangeEventHandler.
The SecondChangeEventHandler implementation is:
public delegate void SecondChangeEventHandler (
object clock,
TimeInfoEventArgs timeInformation );
This delegate returns, as mentioned earlier, void and takes two objects as arguments. The second object derives from the EventArgs class and in this case it is the
TimeInfoEventArgs.
The benefits that you gain by using events and delegates are several. For instance, there can be any number of subscribing classes that are notified when an
event is raised. A button can publish an OnClick event and any number of unrelated objects can subscribe to that event, receiving notification when the button
is clicked. Another big advantage is the decoupling of the publisher and the subscribers. They run independently of one another and can be changed without any
consequences for the other part. This is highly desirable because it makes the code
more flexible, robust and easier to maintain.
4 Design Patterns
4.1 Introduction
When working on a particular problem, it is unusual to tackle it by inventing a new
solution that is completely dissimilar from the existing ones. One often recalls a
similar problem and reuses the essence of its solution to solve the new problem.
This kind of thinking in problem solving is common to many different domains,
such as software engineering.
Design patterns are important building blocks for designing and modelling applications on all platforms. Design patterns help us understand, discuss and reuse
applications on a specific platform. The most commonly stated reasons for studying patterns are; reuse of solutions and establishment of common terminology. By
reusing already established designs, the developer gets a head start on the problem
and avoids common mistakes. The benefit of learning from the experience of others results in that he does not have to reinvent solutions for commonly recurring
problems. The other reason for using patterns is that common terminology brings
a common base of vocabulary and viewpoint of the problem for the developers. It
provides a common point of reference during the analysis and design phase of a
project.
The design patterns are divided into three types: creational, structural, and behavioural. Well be looking at two patterns from each category and present these
in a C# point of view. To fully understand design patterns, knowledge of the object oriented paradigm and some familiarity with the Unified Modelling Language
(UML) is required.
known of the object is its interface. Creational patterns can be divided in class creational patterns and object creational patterns. The difference lies in that the class
creational patterns use inheritance to instantiate a class, while object creational
patterns delegate the instantiation to another object.
All creational patterns hide which concrete class is used by the system and,
further more they hide how an object is created and put together.
4.2.1 Singleton Pattern
This pattern ensures that there exists only one instance of a class with a global access point to it. There are different situations where it is desired to have a single
instance of a class for example a printer spooler; it would be most unfortunate to
have several printer spoolers. Another example is when you need a single point
of access to a database. C# has the mechanisms to implement the singleton de-
}
}
When the spooler is created the value of the variable instance_flag is changed.
Since the instance_flag is a static class variable there can only be one instance_flag,
thus we have ensured that a single instance of a printer spooler exists. The spooler
is created in the getSpooler method instead of the constructor. Note that the constructor is private, so any attempt to access the Spooler constructor will fail. How
does C# facilitate a global access point for the printer spooler class? By defining a
static class method. Static methods can only be called from the classes and not the
class instances.
For example if we add a static instance, queueThis(string filName), to the
Spooler class.
public class Spooler
{
private static Spooler spoolerInstance = null;
private string [] queueList;
private spooler()
{
}
public static Spooler getSpooler()
{
if(spoolerInstance != null)
return spoolerInstance;
else
{
spoolerInstance = new Spooler();
return spoolerInstance;
}
}
public static Spooler queueThis(string filename)
{
// Code to add filename to the queue
}
}
And we have, by defining the queueThis method, created a global access point to
the printer Spooler. The singleton example was from [2].
4.2.2 Abstract Factory
Another creational pattern is abstract factory. Abstract factory pattern is useful
when you want to create families of related or dependent objects and not reveal
}
class concreteFokerWulfFactory :aeroplanesFactory
{
public override aeroplane getAeroplane ()
{
return new aeroplaneProductFW190();
}
}
We just need to modify the main class a little to be able to use the new factory. Note
that we do not change the client class (testpilot) the interface remains the same.
class MainClass
{
static void Main (string [] args)
{
aeroplaneFactory factory = null;
if (args.length > 0 && args[0] == "P51")
factory = new aeroplaneNorthAmericaFactory();
else if ( args.length > 0 && args[0] == "FW190")
factory = new aeroplaneFokerWulfFactory();
new testpilot().askformodel(factory);
}
}
This simple example shows how you can add a new factory to you system but you
can see it is easy to add new products as well. You just add new aeroplanes and
change in the code how to choose the new products (aeroplanes).
interface to be implemented. The same application (or class) needs to communicate with an object that provides the functionality we are looking for but does not
support the exact interface required by the application.
Consider for example the following [1]: A graphics application uses an abstract
Shape class. Each graphical shape such as circle, triangle and polygon is a subclass
of Shape and implements its own drawing function. The drawing function for a
TextShape object however might be more difficult to implement. Lets say that we
find an off the shelf object called TextView that provides us with the functionality
we are looking for. TextView however is not compatible with the Shape class.
There are mainly two way of applying the adapter pattern to make the TextView
class work with our application: class and object [1]. Class means that we inherit
Shapes interface and TextViews implementation. Object means that we hold an
instance of TextView inside TextShape and implement Shapes interface in terms of
TextView. figure 6 and figure 7 illustrate a diagram for the two methods respectively.
Both approaches are fairly easy to implement in C#. Lets look at an example
on each approach. First looking at the Object approach, we assume that the
object as an argument in its constructor and later overrides the Draw method of the
Shape class by calling the DisplayText method of TextView and thereby acts as an
adapter for TextView.
class Shape
{
...
public virtual void Draw()
{
}
...
}
class TextView
{
...
public DisplayText()
{
...
}
...
}
class TextShape: Shape
{
private TextView Text;
public TextShape(TextView T)
{
this.Text = T;
}
public override void Draw()
{
this.Text.DisplayText();
}
...
}
An alternative design would be to view the drawing capabilities of each object as
a behaviour that we want all of our graphic objects to display. In other words our
application demands that each shape implements a Draw method (along with any
other methods we might need). Based on our previous discussion on interfaces we
can present an interface, perhaps called IDisplay containing the methods necessary to reflect this particular behaviour. This way the functionality in the TextView
object could be used if we let TextShape inherit from TextView. We can then add
they are complex (pictures) or simple (lines), in an uniform fashion. This can be
achieved by introducing an abstract base class that represent both the simple and
complex type. This abstract type contains methods that are shared between the
objects; if one-object changes state the other dependent objects will automatically
be notified and updated.
The most obvious use of the Observer pattern is when a change of one object
requires changing of an unknown number of objects. The notifying object should
not have knowledge about who these objects are. The objects arent supposed to
be tightly coupled; the Observer pattern is an example of a decoupling pattern.
It could also be applicable if the abstraction has two aspects and you would like
to encapsulate these aspects in separate objects. This will make the objects more
reusable and allow you to change them independently.
The following class diagram from Gamma et. al [1], figure 10, shows the
relationship between the Subject and the Observer. The Subject may have one
or more Observers, and it provides an interface to attaching and detaching the
observer object at run time. The observer provides an update interface to receive
signals from the subject. The ConcreteSubject stores the subject state interested
by the observers, and it sends notification to its observers. The ConcreteObserver
maintains reference to a ConcreteSubject, and it implements an update operation.
When designing and implementing the Observer pattern in C# we take advantage
the creation of the delegate instance, the name of the method (instance or static)
is passed by the observer that will be notified by the subject to the delegate. Once
the delegate is bound to the method it may be registered with the subjects event
as well as it can be unregistered from the event. Subjects provide notification to
observers by invocation of the event.
The following example is from Purdy D. et. al [4] and shows how to use delegates and events in the Observer pattern. The class, Stock, declare a delegate and
an event. The instance variable askPrice fires an event when its value is set.
public class Stock
{
public delegate void AskPriceDelegate(object aPrice);
public event AskPriceDelegate AskPriceChanged;
object askPrice;
public object AskPrice {
set
{
askPrice = value;
AskPriceChanged(askPrice);
}
}
}
The StockDisplay class represents the user interface in the application.
public class StockDisplay
{
public void AskPriceChanged(object aPrice) {
Console.Write("The new ask price is:" + aPrice + "\r\n");
}
}
The main class first creates a new display and a stock instance. Then it creates a
new delegate and binds it to the observers AskPriceChanged method. After that,
the delegate is added to the event. Now when we use the set property of the stock
class an event is fired every time. The delegate captures the event and executes
the AskPriceChanged method, which in this case outputs the price in the console
window. Before we quit the application, we remove the delegate from the event.
public class MainClass
{
public static void Main()
{
StockDisplay stockDisplay = new StockDisplay();
Stock stock = new Stock();
5 Summary
A design pattern is a description of a set of interacting classes that provide a framework for a solution to a generalized problem in a specific context or environment.
In other words, a pattern suggests a solution to a particular problem or issue in
object-oriented software development.
In todays software development, applications and systems are complex. These
products require a great deal of flexibility in design and architecture to accommodate the ever-changing needs of clients and users during the product development
and also after the product has been released. Design patterns assist in laying the
foundation for a flexible architecture, which is the characteristic of every good
object-oriented design.
C# together with .NET brings about many benefits, including the easy-to-use
object model, the garbage collection mechanism for automatically cleaning up resources, and far improved libraries covering areas ranging from Windows GUI
support to data access and generating web pages. The .NET framework insures
that enough information is included in the compiled library files (the assemblies)
and that your classes can be inherited from and used by other .NET-aware code
without requiring access to your source files.
One of the primary goals of C# is safety; many of the problems that programmers can cause in C and C++ are avoided in C#. For example, a C# array is
guaranteed to be initialized and cannot be accessed outside of its range. The range
checking comes at the price of having a small amount of memory overhead on each
array as well as verifying the index at run-time, but the assumption is that the safety
and increased productivity is worth the expense.
A problem with C# is its close interconnection with the .NET platform. Unfortunately using this program language makes your application equally platform
dependent.
Generally the abstraction level of programming is higher in C# compared to
C++. As usual the advantages gained by raising the abstraction level, come at the
cost of lowered performance and less control.
Introducing C# in design patterns provides the programmer with a modern
object-oriented programming language offering syntactic constructs and semantic
support for concepts that map directly to notions in object-oriented design.
Design patterns suggest that you always program to an interface and not to
an implementation. Then in all of your derived classes you have more freedom to
implement methods that most suits your purposes. Since C# supports interface, this
feature is useful when implementing patterns like adapter or strategy. Delegates
and events are other well-suited features that make the design patterns cleaner.
6 References
1. Gamma E., et. al, Elements of Reusable Object-Oriented Software, AddisonWesley, 1994
2. Cooper J., Introduction to Design Patterns in C#, IBM T J Watson Research
Center, 2002
3. Shalloway A., Trott J., Design Patterns Explained: A New Perspective on
Object-Oriented Design, Addison Wesley Professional, 2001
4. Purdy D., Richter J., Exploring the Observer Design Pattern,http://msdn.
microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/obser
verpattern.asp, 2002.
5. Liberty J., Programming C#, 2nd Edition, OReilly, ISBN: 0-596-00309-9,
2002
6. Archer T., Inside C#, Microsoft Press, ISBN: 0-735-61288-9, Washington,
2001
7. Thai T., Lam H., .NET Framework Essentials, 2nd Edition, OReilly, ISBN:0596-00302-1, Sebastopol, 2002
8. Paul Kimmel, Advanced C# Programming 1st Edition, McGraw-Hill Osborne Media, ISBN 0-072-22417, September 4, 2002,
9. MSDN, C# Language specification 17. Attributes, Microsoft Corporation
2004 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/
csspec/html/vclrfcsharpspec_17.asp
10. Doug Purdy, Exploring the Factory design pattern, Microsoft Corporation,
February 2002, http://msdn.microsoft.com/library/default.asp?url=/libr
ary/en-us/dnbda/html/factopattern.asp
11. MSDN Training, Introduction to C# Programming for the Microsoft .Net
Platform (Prerelease) Workbook, Course nr 2124A, march 2001
12. MSDN Library, Array Class, http://msdn.microsoft.com/library/default.a
sp?url=/library/en-us/cpref/html/frlrfSystemArrayClassTopic.asp.