A less known yet usefull component in dotnet is the TypeConverter component. This component provides means to convert between data types.
If you are wondering which data types are by default supported, just take a look under the hood
A less known yet usefull component in dotnet is the TypeConverter component. This component provides means to convert between data types.
If you are wondering which data types are by default supported, just take a look under the hood
Perhaps not used too much but it’s very usefull to know. I had to implement data validation on several occasions outside of asp dotnet context.Read more
As developers we have a tendency to lean over the functional requirements of our problem in hand but we most of the times ignore the non-functional aspect of our solution, that of code optimization. TooRead more
Using built-in methods to configure and validate option An important part of any asp.net web application is how we handle our project settings, and from my point of view, a very strong emphasis should beRead more
Why locking in the first place? Because in many scenarios we need to guarantee the consistency of the data, this means that we will not allow for one user changing data that another user hasRead more
Bitwise operations are important when dealing with permissions. In this case the permissions are designed as flags and the operations described will include the scenario where one variable can have one or multiple permissions, allRead more