如何:實作介面
使用此程序執行實作介面 IntelliSense 作業。如需詳細資訊,請參閱實作介面。
若要使用 IntelliSense 以 C# 的明確宣告實作介面。
建立主控台應用程式。
將游標置於 class Program 宣告的後面。
輸入 : IComparable 使宣告變成 class Program : IComparable。
在 IComparable 之下啟動智慧標籤。將會出現下列兩個選項:
實作介面 'IComparable'。
明確地實作介面 'IComparable'。
選擇 [明確實作介面 'IComparable']。
IntelliSense 接著會將 IComparable 介面的 IComparable.CompareTo 方法加入 Program 類別:
#region IComparable Members
int IComparable.CompareTo(object obj)
{
throw new Exception("The method or operation is not implemented.");
}
#endregion
若要使用 IntelliSense 以 C# 的隱含宣告實作介面。
建立主控台應用程式。
將游標置於 class Program 宣告的後面。
輸入 : IComparable 使宣告變成 class Program : IComparable。
在 IComparable 之下啟動智慧標籤。將會出現下列兩個選項:
實作介面 'IComparable'。
明確地實作介面 'IComparable'。
選擇 [實作介面 'IComparable']。
IntelliSense 接著會將 IComparable 介面的 CompareTo 方法加入 Program 類別:
#region IComparable Members
public int CompareTo(object obj)
{
throw new Exception("The method or operation is not implemented.");
}
#endregion