How to use JsonSerializer in Newtonsoft.Json?
I’ve recently publish few posts that explains how to work with Newtonsoft.Json framework. Make sure you check them out if you would like to learn more. In this post, I’ll...
...on a journey to become an outlier software engineer!
I’ve recently publish few posts that explains how to work with Newtonsoft.Json framework. Make sure you check them out if you would like to learn more. In this post, I’ll...
I’ve recently publish few posts that explains how to work with Newtonsoft.Json framework. Make sure you check them out if you would like to learn more. In this post, I’ll...
In this post, I’ll explain you how to use Newtonsoft.Json for Dynamic and ExpandoObject objects. It can be useful for some cases. Please refer to my recent post, if you...
I recently published a post that explains how to process JSON using C# and Newtonsoft.Json. Using Newtonsoft.Json framework is the best way to serialize and deserialize any .NET object. In this...
In this post, I’ll tell you how to process JSON using C# and Newtonsoft.Json with proper code. Newtonsoft.Json is a popular high-performance JSON framework for .NET and is also know by Json.NET....
RabbitMQ‘s standard queue is a very basic way of using a queue which is known to most of the developers. Microsoft’s MSMQ also uses the same standard queue concept. In this...
Microsoft’s Azure Mobile Services (AMS) allows application developers to register their app with one or more authentication providers like Google, Facebook, Twitter, Microsoft and Azure Active Directory. You can configure...
Base64 is a group of similar binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The term Base64 originates from...
Recently, I had a requirement to upgrade one of my client’s ASP.NET MVC web application from version 4 to 5. So, I thought to write the steps to how to...
What is Dependency Injection? In simple words, Dependency Injection (DI), is a type of IoC where the creation and binding of a dependency is moved outside of the class that...
More