从OrderedDictionary中按名称获取值

本文关键字:获取 OrderedDictionary | 更新日期: 2023-09-27 18:07:13

我正在寻找类似PHP的关联数组支持嵌套。例如,我正在创建一个Dictionary对象,如下所示:

System.Collections.Specialized.OrderedDictionary userRoles = new System.Collections.Specialized.OrderedDictionary();
userRoles["UserId"] = "120202";
userRoles["UserName"] = "Jhon Doe";
// 2D array Like
userRoles["UserRoles"][0] = "CAN_EDIT_LIST";
userRoles["UserRoles"][1] = "CAN_EDIT_PAGE";

然后我想通过KeyNames而不是索引值访问它们。这可能吗?

从OrderedDictionary中按名称获取值

OrderedDictionary使用对象作为键和值。

要实现嵌套,只需将值设置为另一个字典:

userRoles["UserRoles"] = new Dictionary();

那么你可以使用:

((Dictionary())userRoles["UserRoles"])["MyKey"] = "My Value";