a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
361 B
C#
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 ();
|
|
}
|
|
}
|