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
Dynamic Typing in C# - Use with caution D 3:45:00 PM Add Comment Well, C# provides this option to prove that it is flexible. If you are too fond of dynamic typing, use scripting languages such as PHP! B... Read More
Constructor Inheritance in C# D 3:32:00 PM Add Comment Like any other Object Oriented Programming language, C# does not allow parent constructor to be automatically inherited. It need to explici... Read More
Code Reuse via Composition in C# D 1:41:00 PM Add Comment Composition is a common object oriented concept that enables us to implement loose coupling as well as code-reuse. Lot of times we recomme... Read More