[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0111-21.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 ();