Problem : I’m experiencing an error when using the windows installer to install an event source in a product I […]
.Net DizzyCoding
Drag Files To Desktop Shortcut – Not Opening Files in Application
Problem : I’ve got a small log viewer app to read some custom logs. I can drag files directly onto […]
Rearrange a list based on given order in c#
Problem : I have a list as follows: {CT, MA, VA, NY} I submit this list to a function and […]
Outlook addin: Get elements from a selected calendar
Problem : I’m creating an Outlook add-in and i’d like to know how to get elements from a selected calendar? […]
NHibernate Reflection Optimizer – what does it do?
Problem : I’ve found initializing my session factory is massively quicker whenever I disable the nhibernate reflection optimizer. This is […]
Having separate copy of base class static member in each derived class
Problem : I have following class structure: public abstract class PresenterBase { public static Dictionary<string, MethodInfo> methodsList; public void Bind() […]
Migrating to AutoMapper 5 – Circular references
Problem : I’m having a System.StackOverflowException when trying to Map something in AutoMapper 5 that worked previously with AutoMapper 4. […]
What is the most secure hashing algorithm in the .NET framework?
Problem : The size of the generated hash and the speed of the algorithm are not important. I’m really only […]
Checking a HTML string for unopened tags
Problem : I have a string as a HTML source and I want to check whether the HTML source which […]
Are threads waiting on a lock FIFO?
Problem : Let’s say I have the following code static class … { static object myobj = new object(); static […]