2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / gcs0111.cs
blob03f7a2f6c2c1c127da1f410603e2dcbc9797c238
1 // CS0111: `Dictionary<K,V>.Add(V)' is already defined. Rename this member or use different parameter types
2 // Line: 14
3 using System;
4 using System.Collections.Generic;
6 public class Dictionary<K,V>
8 public void Add (V key)
10 throw new InvalidOperationException ();
13 public void Add (V value)
15 throw new InvalidOperationException ();