共用方式為


HOW TO:實作抽象基底類別

更新:2007 年 11 月

請使用這個程序來執行實作抽象基底類別 IntelliSense 作業。如需詳細資訊,請參閱實作抽象基底類別

若要使用 IntelliSense 實作抽象基底類別

  1. 建立主控台應用程式。如需詳細資訊,請參閱主控台應用程式範本

  2. 請將游標置於 class Program 陳述式之後。

  3. 輸入 : StringComparer 讓類別宣告變為 class Program : StringComparer。

  4. 按一下 StringComparer 下方的智慧標籤,然後再按一下 [實作抽象類別 'System.StringComparer']。

    IntelliSense 會將三個來自 StringComparer 類別的覆寫方法加入至 Program 類別。

    using System;
    using System.Collections.Generic;
    using System.Text;
    namespace ConsoleApplication1
    {
        class Program : StringComparer
        {
            static void Main(string[] args)
            {
    
                }
    
                public override int Compare(string x, string y)
                {
                    throw new Exception ("The method or operation is not implemented.");
                }
    
                public override bool Equals(string x, string y)
                {
                    throw new Exception ("The method or operation is not implemented.");
                }
                public override int GetHashCode(string obj)
                {
                    throw new Exception ("The method or operation is not implemented.");
                }
    
        }
    }
    

範例

開發環境所建立的新主控台應用程式是以下列宣告為開頭。

using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
     class Program
     {
          static void Main(string[] args)
          {
     
          }
      }
}

請參閱

參考

實作抽象基底類別

StringComparer

其他資源

自動產生程式碼