Understanding WPF Commands

Lately Microsoft have been using some of the well known design patterns to ease and furnish work of a programmer who choose to bang keyboards using .NET. One good example is WPF commands. Microsoft at MSDN on Commanding: Commanding is an input mechanism in Windows Presentation Foundation (WPF) which provides…

Managing Microsoft Message Queue (MSMQ)

In this part of my sharing we will take a tour of the robust and user-friendly Message Queue (MSMQ) explorer provided by Microsoft out-of-box to manage all basic task related to message queue. To open MSMQ explorer navigate to Control Panel > Administrative Tools > Computer Management > Services and Applications (Left pane)…

Introduction to Microsoft Message Queue (MSMQ)

Microsoft Message Queue is message based protocol technology that provides a way to communicate asynchronously in a distributed environment. Microsoft Message Queue is also known as MSMQ for short, code name “Falcon”. MSMQ is one of the best proven ways to engineer for developing distributed enterprise business solutions. It provides…

Understanding ref, out and params keyword in C#

I would start this.life and connect with the world by explaining three important C# keywords – ref, out and params also known as “Method parameter keywords”. These keywords are called method parameter keywords because they are used to change the behaviour of parameters passed into any method. C# Keyword -…