您能描述一下它的作用吗?我在一个项目中遇到了它,但不知道它是如何工作的。

public object this[int i]
{
    get { return columnValues[i]; }
}

最佳答案

这称为索引器,用于索引,例如,我们使用它从字符串中获取字符。您可以herehere做好准备,

string str = "heel";

char chr = str[0];


这是可以为类制作索引器的方式

class Sentence
{
    string[] words = "The quick brown fox".Split();
    public string this [int wordNum] // indexer
    {
       get { return words [wordNum]; }
       set { words [wordNum] = value; }
    }
}

Sentence s = new Sentence();
Console.WriteLine (s[3]); // fox
s[3] = "kangaroo";
Console.WriteLine (s[3]); // kangaroo

关于c# - 类中的奇怪属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12953898/

10-13 08:05