本文整理汇总了C#中ReadOnlyDictionary.Add方法的典型用法代码示例。如果您正苦于以下问题:C# ReadOnlyDictionary.Add方法的具体用法?C# ReadOnlyDictionary.Add怎么用?C# ReadOnlyDictionary.Add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ReadOnlyDictionary
的用法示例。
在下文中一共展示了ReadOnlyDictionary.Add方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReadOnlyDictionary_Unit_Add1_Optimal
public void ReadOnlyDictionary_Unit_Add1_Optimal()
{
IDictionary<String, String> dictionary = new Dictionary<String, String>() {
{ "Key1", "Value1" },
{ "Key2", "Value2" },
{ "Key3", "Value3" }
};
IDictionary<String, String> target = new ReadOnlyDictionary<String, String>(dictionary);
String key = "MyKey";
String value = "MyValue";
target.Add(key, value);
}
示例2: ReadOnlyDictionary_Unit_Add2_Optimal
public void ReadOnlyDictionary_Unit_Add2_Optimal()
{
IDictionary<String, String> dictionary = new Dictionary<String, String>() {
{ "Key1", "Value1" },
{ "Key2", "Value2" },
{ "Key3", "Value3" }
};
ICollection<KeyValuePair<String, String>> target = new ReadOnlyDictionary<String, String>(dictionary);
String key = "MyKey";
String value = "MyValue";
KeyValuePair<String, String> item = new KeyValuePair<String, String>(key, value);
target.Add(item);
}
示例3: TestConstructFromKeyValuePairs
public void TestConstructFromKeyValuePairs()
{
var dic = new ReadOnlyDictionary<string, string>(new[] {
new KeyValuePair<string, string>("key1", "val1"),
new KeyValuePair<string, string>("key2", "val2"),
new KeyValuePair<string, string>("key3", "val3"),
});
Assert.IsTrue(dic.IsReadOnly);
Assert.AreEqual("val1", dic["key1"]);
try {
dic.Add("newkey", "newvalue");
Assert.Fail("NotSupportedException");
}
catch (NotSupportedException) {
}
}
示例4: TestConstructFromKeyValuePairsWithSpecifiedEqualityComaperer
public void TestConstructFromKeyValuePairsWithSpecifiedEqualityComaperer()
{
var dic = new ReadOnlyDictionary<string, string>(new[] {
new KeyValuePair<string, string>("key1", "val1"),
new KeyValuePair<string, string>("key2", "val2"),
new KeyValuePair<string, string>("key3", "val3"),
}, StringComparer.OrdinalIgnoreCase);
Assert.IsTrue(dic.IsReadOnly);
Assert.AreEqual("val1", dic["key1"]);
Assert.AreEqual("val1", dic["Key1"]);
Assert.AreEqual("val1", dic["KEY1"]);
try {
dic.Add("newkey", "newvalue");
Assert.Fail("NotSupportedException");
}
catch (NotSupportedException) {
}
}