Archive for May, 2010

System.MissingMethodException when running unit test

Sometimes when I want to run my unit-tests, I get the MissingMethod exception. In general, this problem is usually caused by mismatch between the live code and executed test binary. Here are some things you could try: clean the solution and all output directories rebuild the solution refresh the test view change the active configuration [...]

WPF logging control

In almost every application you need/want some form of logging. I’ve made a sample solution that shows a usercontrol that visually displays the output. The text that is being logged is also written to a text file. Some main features: supports multithreading allows filtering on different trace levels possibility to show timestamp clear output Check [...]