Posts

Showing posts from August, 2018

Important C# functionalities every developer should get hands on

C# since its inception has gone through many changes and new feature gets added every now and then, here is list of what every developer should try to get hands on. Most of it will be applicable for any OOP language. Principal of OOP (Inheritance/Encapsulation/Abstraction/Polymorphism). Abstract class and Interface. Generic classes and functions. SOLID principles. delegate and its use. Fun<>. Implement functional programming using C#. (Will help you understand how all this .where().select() works) Reflection. (Try to mimic ORM using reflection) var,dynamic,Tupple,ValuedTupple Most common design patterns.