Say I have the following dictionary like so:
public static Dictionary<Type, string> nullableTypeToStringMap = new Dictionary<Type, string>()
{
{typeof(bool?) , "bool?"},
{typeof(byte?) , "byte?"},
{typeof(sbyte?) , "sbyte?"},
{typeof(char?) , "char?"},
{typeof(decimal?) , "decimal?"},
{typeof(double?) , "double?"},
{typeof(float?) , "float?"},
{typeof(int?) , "int?"},
{typeof(uint?) , "uint?"},
{typeof(long?) , "long?"},
{typeof(ulong?) , "ulong?"},
{typeof(short?) , "short?"},
{typeof(ushort?) , "ushort?"}
};
and say I have execute this line:
nullableTypeToStringMap [typeof(int?)];
I get the following exception: The type initializer for 'DatabaseUtils.Utils.TypeMap' threw an exception.
However, if I execute this line:
nullableTypeToStringMap [typeof(int)];
It works fine. Any idea why the nullable type is causing me issues?
TypeMap? Any other static fields, or a non-empty cctor? – AakashM Dec 21 '11 at 17:07nullableTypeToStringMap [typeof(int?)];? What isDatabaseUtils.Utils.TypeMap? – Gabe Dec 21 '11 at 17:12