Translate

Showing posts with label C#. Show all posts
Dynamic Typing in C# - Use with caution

Dynamic Typing in C# - Use with caution

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#

Constructor Inheritance in C#

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#

Code Reuse via Composition in C#

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