2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0111.cs
blobedaec4b5fdbc08979d2fdaab619383db4772371e
1 // CS0111: A member `Dictionary<K,V>.Add(V)' is already defined. Rename this member or use different parameter types
2 // Line: 14
4 using System;
5 using System.Collections.Generic;
7 public class Dictionary<K,V>
9 public void Add (V key)
11 throw new InvalidOperationException ();
14 public void Add (V value)
16 throw new InvalidOperationException ();