Is there a smarter way to define a dictionary like this:
class field definition:
public Dictionary<string, object> paramList { get; set; }
access later:
dt.paramList = new Dictionary<string, object> { { "id", rt_id }, { "gen", rt_gen }, { "rtext", rchar } };
dt.paramList = { { "id", rt_id }, { "gen", rt_gen }, { "rtext", rchar } };
... second term works obv. not, despite an array could be initialized by:
int[,] b = { { 0,1}, { 1,1} };