Simple Workflow Engine Implementation in C# D 12:47:00 PM Add Comment Below is a simple implementation of work flow engine using interfaces and the concept of injecting overloaded class implementations via the... Read More
Simple Stop Watch implementation in C# D 12:37:00 PM Add Comment Below is a simple stop watch implemented in C#, enjoy! StopWatch using System ; namespace StopWatchApp { public class ... Read More
C# Abstract Classes Vs Interfaces D 12:17:00 PM Add Comment 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 D 5:03:00 PM Add Comment 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 D 12:50:00 PM Add Comment 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 D 9:39:00 AM Add Comment 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 D 12:18:00 PM Add Comment 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