If have the following code. Where you see the XXX I would like to put in an array of type long[].
How can I do this and how would I fetch values from the dictionary? Do I just use defaultAmbience["CountryId"][0] to get the first element?
public static Dictionary<string, object> defaultAmbience = new Dictionary<string, object>()
{
{ "UserId", "99999" },
{ "CountryId", XXX },
{ "NameDefaultText", "nametext" },
{ "NameCulture", "it-IT" },
{ "NameText", "namelangtext" },
{ "DescriptionDefaultText", "desctext" },
{ "DescriptionCulture", "it-IT" },
{ "DescriptionText", "desclangtext" },
{ "CheckInUsed", "" }
};