Is there a way to create an object with multiple key/value pairs of differing types in C# like we can with Hashtables in UnityScript in a single line of code?
UnityScript:
var exampleHashtable:Hashtable = {“exampleString”:“string”, “exampleInt”:1, "exampleBoolean:true};