Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

19 lines
361 B
C#

// CS0111: A member `Dictionary<K,V>.Add(V)' is already defined. Rename this member or use different parameter types
// Line: 14
using System;
using System.Collections.Generic;
public class Dictionary<K,V>
{
public void Add (V key)
{
throw new InvalidOperationException ();
}
public void Add (V value)
{
throw new InvalidOperationException ();
}
}