I was wondering if there's a way to create a dictionary using an anonymous type for its values. Something like
{
{ "first", {1, true} },
{ "second", {2, false} },
}
I want to use this in .NET 3.5, so there's no vanilla implementation of Tuple<...> available.
Any suggestions?