Contents tagged with Code
-
Improving Time-Critical Code written in C
Writing web pages is very similar to writing any other type of code. You have to understand how it is going to be used and where you need to really make things run as quickly as possible.
-
Debugging .NET Framework Source Code
I am not sure how many people are familiar with the .NET Reference Source project, but if you do a lot of debugging of .NET code, chances are that you have had a situation where you wanted to be able to step into the .NET Source from within Visual Studio.
-
Visual Studio Designer not Respecting Assembly Binding Redirection
So we recently came across an issue where Visual Studio 2005 and 2008 Designers were not respecting assembly binding redirection.
-
Making an Asynchronous Call using the Impersonation Identity
If you try to make an asynchronous call, you will notice that the thread that executes the call doesn't run under the same account as the thread that called it, assuming you are using impersonation.