a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
363 B
C#
23 lines
363 B
C#
// CS0111: A member `MyClass.IMyInterface<System.String>.Prop' is already defined. Rename this member or use different parameter types
|
|
// Line: 18
|
|
|
|
using System;
|
|
|
|
interface IMyInterface<T>
|
|
{
|
|
bool Prop { set; }
|
|
}
|
|
|
|
public class MyClass: IMyInterface<string>
|
|
{
|
|
bool IMyInterface<string>.Prop
|
|
{
|
|
set {}
|
|
}
|
|
|
|
bool IMyInterface<System.String>.Prop
|
|
{
|
|
set {}
|
|
}
|
|
}
|