#csharp
Read more stories on Hashnode
Articles with this tag
Are you returning null from your methods? Are you branching your code with "if not null"? Do you often see null reference exceptions in your...
In C#, a default constructor (a constructor with no parameters) is silently added by the compiler when there is no explicit constructor available in a...
We utilize async & await in C# whenever an I/O call occurs within our functions to prevent blocking the calling threads. This is achieved by returning...
The feature of records in C# is underrated, but it offers substantial benefits. Records are ideal for checking value equality between variables of...
C# is getting more concise with every new release. #csharp12 ยท List<string> first3DaysOfWeek = ["Sunday", "Monday", "Tuedsay"]; List<string>...