-1
通用接口我有一個接口財產
/// <summary>
/// Summary description for IBindable
/// </summary>
public interface IBindable<T>
{
// Property declaration:
T Text
{
get;
set;
}
}
現在我想實現這個接口在我的課
public class MyTextBox :IBindable<string>
{
//now i how can i implement Text peroperty here
}
我不想要實現它像
string IBindable<string>.Text
{
get { return "abc";}
set { //assigne value }
}
我想實現它像
public string Text
{
get{} set {}
}
我不能把握的問題......你可以做你說什麼。 .. – digEmAll 2010-04-28 17:53:32
這裏有什麼問題? – 2010-04-28 17:55:01
我猜OP沒有意識到這是有效的...... – 2010-04-28 17:56:08