Hashing Passwords In .NET Core

Hashing passwords in .NET Core offers several benefits that are crucial for ensuring the security of user accounts and sensitive information in applications. Custom Password Validation Attribute The CustomPasswordValidationAttribute class is designed to provide custom validation for password fields in .NET Core applications. It allows developers to enforce specific requirements or constraints on passwords, such … Read more

Customizing .NET: Overriding the ToString() Method in C# (System.Object)

In this blog post, we’re going to talk about a special trick in C# programming. This trick is about changing the ToString() method behaviour. In technical terms, we use the word How to Override the ToString() in C# programming. What is the use of ToString()? Imagine you have a number, like 10, and you want … Read more