例如,DataGridView让你这样做:

DataGridView dgv = ...;
DataGridViewCell cell = dgv[1,5];

但是无论如何我都找不到关于索引/方括号操作符的文档。他们叫它什么?它在哪里实现?它能扔吗?我怎么能在自己的课堂上做同样的事情呢?

埃塔:谢谢你的快速回答。简单地说:相关文件在“Item”属性下;重载的方法是通过声明一个属性,如公共对象this[int x, int y]{get{…};集{…}};DataGridView的索引器不会抛出,至少根据文档是这样的。它没有提到如果您提供无效的坐标会发生什么。

ETA:好的,即使文档没有提到它(淘气的微软!),事实证明,DataGridView的索引器实际上会抛出一个argumentoutofranceexception,如果你提供了无效的坐标。合理的警告。


当前回答

public class CustomCollection : List<Object>
{
    public Object this[int index]
    {
        // ...
    }
}

其他回答

Operators                           Overloadability

+, -, *, /, %, &, |, <<, >>         All C# binary operators can be overloaded.

+, -, !,  ~, ++, --, true, false    All C# unary operators can be overloaded.

==, !=, <, >, <= , >=               All relational operators can be overloaded, 
                                    but only as pairs.

&&, ||                              They can't be overloaded

() (Conversion operator)            They can't be overloaded

+=, -=, *=, /=, %=                  These compound assignment operators can be 
                                    overloaded. But in C#, these operators are
                                    automatically overloaded when the respective
                                    binary operator is overloaded.

=, . , ?:, ->, new, is, as, sizeof  These operators can't be overloaded

    [ ]                             Can be overloaded but not always!

资料来源

支架:

public Object this[int index]
{
    
}

# #但

数组索引操作符不能重载;但是,类型可以定义索引器,即接受一个或多个参数的属性。索引器参数被括在方括号中,就像数组索引一样,但是索引器参数可以声明为任何类型(与数组索引不同,数组索引必须是整数)。

从MSDN

public class CustomCollection : List<Object>
{
    public Object this[int index]
    {
        // ...
    }
}

对于CLI c++(使用/clr编译),请参阅此MSDN链接。

简而言之,属性可以被命名为“default”:

ref class Class
{
 public:
  property System::String^ default[int i]
  {
    System::String^ get(int i) { return "hello world"; }
  }
};

你可以在这里找到怎么做。 简而言之就是:

public object this[int i]
{
    get { return InnerList[i]; }
    set { InnerList[i] = value; }
}

如果你只需要一个getter,下面的答案语法也可以使用(从c# 6开始)。

这就是item属性:http://msdn.microsoft.com/en-us/library/0ebtbkkc.aspx

也许像这样的东西会起作用:

public T Item[int index, int y]
{ 
    //Then do whatever you need to return/set here.
    get; set; 
}