如何實現下面接口定義的函數?當我在VS2010中實現時,如下所示。 MyType變灰了,它不再識別類型了?謝謝!C#接口函數定義具體實現
public interface IExample
{
T GetAnything<T>();
}
public class MyType
{
//getter, setter here
}
public class Get : IExample
{
public MyType GetAnything<MyType>()
{ ^^^^^^^ ^^^^^^
MyType mt = new MyType();
^^^^^^^^^^^^^^^^^^^^^^^^^^ /* all greyed out !!*/
}
}
這有一個[XY問題(http://meta.stackexchange.com/q/66377/4068)的感覺吧... – 2012-04-13 20:22:58