Event Logging Using Reflection
When exceptions occur during the execution of an application, the stack trace contains the detailed location of where the exception is […]
When exceptions occur during the execution of an application, the stack trace contains the detailed location of where the exception is […]
I ran into this weird compile time error the other day, and as it turned out, this is due to […]
Typically, there is rarely a need to change a control’s ID. However, this practice is sometimes useful when debugging a […]
It seems that the DropDownList control in ASP.Net 2.0 really has some issues. Besides the one I mentioned in an […]
Reflection is case sensitive by default, which comes at no surprise to most C# developers.
In a role based application, it is often required that certain controls on the UI form be enabled and disabled […]
A while ago, I discussed some interesting behavior of File.Exist function in .Net. Recently I found out that File.Copy is […]
I came across something rather interesting the other day when trying to determine what sorting algorithms .Net Framework uses in […]
Here is a tool that I created (in C#.Net) which comes in handy when dealing with multi-frame TIFF images.
When dealing with GDI+ in .Net (e.g. certain objects in System.Drawing namespace), we would sometimes get the following exception:
I have heard many people complaining about how GDI+ handles errors.
Download DynamicEvent.zip In an article earlier, I discussed how to dynamically load an assembly and execute it via the contract […]
Sometimes we find App.config inadequate in addressing our problems and need to have a generic solution in creating strongly typed […]
Partial class was introduced in .Net 2.0 mainly for better handling of visual designer generated code.
Download filewatchermt.zip In business world, file watchers play an important role in day to day operations.