本文整理汇总了C#中System.Windows.ResourceDictionary.CopyTo方法的典型用法代码示例。如果您正苦于以下问题:C# ResourceDictionary.CopyTo方法的具体用法?C# ResourceDictionary.CopyTo怎么用?C# ResourceDictionary.CopyTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.ResourceDictionary
的用法示例。
在下文中一共展示了ResourceDictionary.CopyTo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InterfaceTest
public void InterfaceTest ()
{
IDictionary<object, object> d = new ResourceDictionary ();
Assert.Throws<ArgumentException> (delegate {
d.Add (new KeyValuePair<object, object> (new object (), new object ()));
}, "#1");
d.Add (new KeyValuePair<object, object> ("bob", new object ()));
Assert.Throws<NotImplementedException> (delegate {
int a = d.Count;
GC.KeepAlive (a);
}, "#2");
Assert.AreEqual (1, ((ResourceDictionary) d).Count, "#3");
Assert.Throws<ArgumentException> (delegate {
d.Add (new object (), new object ());
}, "#4");
d.Add ("str", new object ());
Assert.AreEqual (2, ((ResourceDictionary) d).Count, "#5");
Assert.Throws<ArgumentException> (delegate {
d.ContainsKey (new object ());
}, "#6");
Assert.IsTrue (d.Contains (new KeyValuePair<object, object> ("str", new object ())), "#7");
d.Clear ();
Assert.AreEqual (0, ((ResourceDictionary) d).Count, "#8");
// this doesn't throw in SL4 for any runtime version
d.GetEnumerator ();
Assert.Throws<NotImplementedException> (delegate {
var v = d.Keys;
GC.KeepAlive (v);
}, "#10");
Assert.Throws<NotImplementedException> (delegate {
var v = d.Values;
GC.KeepAlive (v);
}, "#11");
Assert.IsFalse (d.IsReadOnly, "#12");
Assert.Throws<NotImplementedException> (delegate {
d.CopyTo (new KeyValuePair<object, object> [10], 0);
}, "#13");
}