Rupen AnjariaWhat is Hashset in C#?In this article we will explore what is Hashset in C#, when and how to use them with examples.Aug 18Aug 18
Rupen AnjariaWhat are iterators in C#?Iterators are integral part of almost all the C# applications. They play very crucial role in iterating over a list. It does have some…Aug 13Aug 13
Rupen AnjariaLoad, Stress, Spike, Soak Testing Using k6 in C#Load, stress, spike, and soak testing falls under performance testing. The performance testing will help us to understand that how our…Aug 11Aug 11
Rupen AnjariaAvoid Writing Exception, do this instead in C#.We all love the way C# provides us to handle exceptional scenarios using Exceptions. This could be handling null or missing arguments or…Aug 9Aug 9
Rupen AnjariaWhat are Indexers in C#?Indexers allows any custom class or struct to offer array like storage. Just like in arrays, we use indexer ( [ ] ) to access it’s element…Aug 8Aug 8
Rupen AnjariaHow and when to use yield keyword in C#Yield is useful when we need to return values without iterating through entire sequence. This can be benificial in many differfent…Aug 81Aug 81
Rupen AnjariaHandling missing members during JSON to C# deserialization and using JsonSerializerOptionsIn this article, we are going to see how to handle missing members during deserialization of JSON string to C# object. We will also explore…Aug 4Aug 4
Rupen AnjariaWorking with JSON in C#: Using System.Text.JsonHow to serialize and deserialization JSON in C# using the System.Text.Json namespace.Jul 30Jul 30
Rupen AnjariaBoost C# Performance Using Span<T>Using span can make our application superfast, provided we know how and when to use it. This article will explain very basics (and needful)…Jul 29Jul 29
Rupen AnjariaWhat are HTTP files and how to use them in Visual Studio to test APIs.http files are simple and powerful way to provide an easy and convenient way to test external or internal APIs. It’s just like running a…Jul 26Jul 26