Problem : I’m creating an Outlook add-in and i’d like to know how to get elements from a selected calendar? […]
Author: Steve
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 […]
A few questions about working with db4o
Problem : I am trying the db4o object databse and so far I quite like what I am seeing, but […]
Build errors when multi-targeting in csproj file
Problem : I’m trying to build a class library that multi-targets both .NET 4.5.1 and .NET Standard 1.3. According to […]
sorting a generic list of doubles
Problem : I have a generic list of doubles that show on the page like this: 1199.17 1199.17 1161.67 1161.67 […]