6
我有一個C++/CLI類:訪問C++/CLI重載[]運算符在C#
public ref class Foobar
{
public:
// methods here etc..
// operator overload
double operator[](int index);
}
如何訪問Foobar
從C#因爲我已經試過:
Foobar foo = new Foobar();
int i = foo[1];
和我得到CS0021: Cannot apply indexing with [] to an expression of type 'Foobar'
你說的是*默認索引器*。這是*索引屬性*的特例。 –