Extension Methods D 3:45:00 PM Add Comment Extension methods are a way to add methods to a class without changing its source code or adding it into a derived class. Creating ext... Read More
Events and Delegates D 3:36:00 PM Add Comment We use events and delegates to extend applications and to implement loose coupling. Rather than adding various method calls within an imp... Read More
Mastering C# Delegates D 2:56:00 PM Add Comment Delegates is a way to support addition of multiple features (eg: methods) to a framework without the need to recompile the core class tha... Read More
Simple Multithreading in C# using Async-Wait D 1:57:00 PM Add Comment Parallel execution has been one of the core techniques of programming languages that enables and stabilizes the heavy orchestrated flow of... Read More