共用方式為


編譯器錯誤 CS0570

更新:2007 年 11 月

錯誤訊息

語言不支援屬性、索引子或事件 'name',請試著直接呼叫存取子方法 'name!'

這個錯誤發生在使用另一種編譯器所產生的匯入中繼資料 (Metadata) 時。您的程式碼嘗試使用編譯器無法處理的類別成員。

範例

下列 C++ 程式會使用其他語言可能不使用的 RequiredAttributeAttribute 屬性。

// CPP0570.cpp
// compile with: /clr /LD

using namespace System;
using namespace System::Runtime::CompilerServices;

namespace CS0570_Server {
   [RequiredAttributeAttribute(Int32::typeid)]  
   public ref struct Scenario1 {
      int intVar;
   };

   public ref struct CS0570Class {
      Scenario1 ^ sc1_field;

      property virtual Scenario1 ^ sc1_prop {
         Scenario1 ^ get() { return sc1_field; }
      }

      Scenario1 ^ sc1_method() { return sc1_field; }
   };
};

下列範例會產生 CS0570。

// CS0570.cs
// compile with: /reference:CPP0570.dll
using System;
using CS0570_Server;

public class C {
   public static int Main() {
      CS0570Class r = new CS0570Class();
      r.sc1_field = null;   // CS0570
      object o = r.sc1_prop;   // CS0570
      r.sc1_method();   // CS0570
   }
}