* SqlConnection.cs: Implemented SqlConnection.GetSchema ().
[mono.git] / mcs / errors / gcs0111.cs
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;
5
6 public class Dictionary<K,V>
7 {
8         public void Add (V key)
9         {
10                 throw new InvalidOperationException ();
11         }
12
13         public void Add (V value)
14         {
15                 throw new InvalidOperationException ();
16         }
17 }