Although they look the same, the array indexer and list indexer are doing completely separate things.
The List<T>
indexer is declared as a property with a parameter:
public T this[int index] { get; set; }
This gets compiled to get_Item
and set_Item
methods that are called like any other method when the parameter is accessed.
The array indexer has direct support within the CLR; there is a specific IL instruction ldelema
(load element address) for getting a managed pointer to the n'th element of an array. This pointer can then be used by any of the other IL instructions that take a pointer to directly alter the thing at that address.
For example, the stfld
(store field value) instruction can take a managed pointer specifying the 'this' instance to store the field in, or you can use the pointer to call methods directly on the thing in the array.
In C# parlance, the array indexer returns a variable, but the list indexer returns a value.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…