Below is a simple implementation of work flow engine using interfaces and the concept of injecting overloaded class implementations via the...
Read More
Translate
Showing posts with label C#. Show all posts
Simple Stop Watch implementation in C#
Below is a simple stop watch implemented in C#, enjoy! StopWatch using System ; namespace StopWatchApp { public class ...
Read More
C# Abstract Classes Vs Interfaces
We use abstract classes when the base class can't have concrete implementation and that we need the derived class to fully implement it...
Read More
C# Interfaces
Interface is a similar language construct such as class, but fundamentally different from a class . Some people claim that Interface is a w...
Read More
C# Inheritance
We generally apply the concept of inheritance to implement a IS-A relationship. For example to implement a relationship that says an Apple ...
Read More
C# Indexers
C# Indexers is a simple implementation of key/value pairs using Dictionary type. Below is a sample implementation of a telephone directory ...
Read More
C# Generics
C# Generics are really useful when we want to reuse a class for different types and with constraints on what those types would be without r...
Read More
Subscribe to:
Posts (Atom)