Learning null-coalescing operator
I am pretty sure that most of the guys has never knew this operator and its also very rarely used. Since C# provides this and this is very useful and handy at certain times. The short from of...
View ArticleWorking with EventViewer using C#
There are several phases of a Application . It does not end with developing the application and deploying it on production servers. Other most important part, any problem surfaces after the deployment,...
View ArticleReading Event logs efficiently using C#
This post is extension is my last post on Event Viewer. Please the find the link below. Working with EventViewer using C# We’ll be talking about the reading event logs. In my last post I discussed...
View ArticleWhat is SecureString ?
In this post, we are going to discuss a class SecureString. Although this class is available since .NET 2.0, but I am sure, many of us would not be knowing or using it. Even I was not aware of this...
View ArticleVideo Post – String Manipulation in C#: String, StringBuilder, String.Join
Hello All, This is a short video post that I recorded few days back. In this video and I have discussed about available options to use for string manipulation in C#. I have seen many junior to senior...
View ArticlePassing a reference type using ref keyword
In this post, I am going to talk about ref keyword in C#. You all must be knowing the basic use of this keyword. But for them who are new to this keyword or C#, will explain the basics. ref keyword is...
View ArticleHow to use two different languages in a .NET Project
Did you ever try to use two languages in some of your project? Or Say you created a Class in VB.NET and used in C# code. As .NET provides us the capability to use multiple languages in same project,...
View ArticleHow to Override Finalize method in C#
Being a .NET Developer, you must have basic information about Garbage Collector. Garbage Collector is a boon for .Net developers which takes care of memory management for .NET programs in the...
View ArticleConcurrency vs Multi-threading vs Asynchronous Programming : Explained
Recently, I was speaking in an event and I asked a question to the audience in between my talk about Asynchronous programming , I found that some of the people were confused between multi-threading and...
View ArticleSingleton vs Static class : Key Differences and Usages
The debate about Singleton vs Static is quite old and it is still continuing and there are lots of confusion around this as well. In this post, I am trying to explain these two concepts, key...
View Article