Tuesday, June 14, 2005

Total ASP.NET Security (Complete Concepts !!)

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetch08.asp

Friday, June 03, 2005

How to Convert Integer to Binary

The Convert class has an overload of the static ToString() method that takes two ints and returns a string populated with the number in the specified base. For instance, calling Convert.ToString(128, 2) will return "10000000".

Quick Tip

It is highly confusing to say that objects are passed by reference by default instead of the correct statement that "object references are passed by value by default".