logo
CSharp_Prog_Guide

Сравнение свойств и индексаторов

Индексаторы подобны свойствам. За исключением различий, перечисленных в следующей таблице, все правила, определенные для методов доступа к свойствам, применимы и к методам доступа к индексаторам.

Свойство

Индексатор

Позволяет вызывать методы как открытые элементы данных.

Обеспечивает доступ к элементам внутренней коллекции объекта с помощью представления массива самого объекта.

Доступ посредством простого имени.

Доступ посредством индекса.

Допускаются статические члены или члены экземпляров.

Допускаются только члены экземпляров.

Метод доступа get свойства не имеет параметров.

Метод доступа get индексатора имеет такой же список формальных параметров, как и индексатор.

Метод доступа set свойства содержит неявный параметр value.

Метод доступа set индексатора имеет такой же список формальных параметров, как и индексатор, а также параметр value.

Поддерживается сокращенный синтаксис с Автоматически реализуемые свойства.

Не поддерживает сокращенный синтаксис

Delegates

A delegate is a type that references a method. Once a delegate is assigned a method, it behaves exactly like that method. The delegate method can be invoked like any other method, with parameters and a return value, as in this example:

public delegate int PerformCalculation(int x, int y);

Any method from any accessible class or struct that matches the delegate's signature, which consists of the return type and parameters, can be assigned to the delegate. The method can be either static or an instance method. This makes it possible to programmatically change method calls, and also plug new code into existing classes. As long as you know the signature of the delegate, you can assign your own delegated method.

Note:

In the context of method overloading, the signature of a method does not include the return value. But in the context of delegates, the signature does include the return value.

This ability to refer to a method as a parameter makes delegates ideal for defining callback methods. For example, a sort algorithm could be passed a reference to the method that compares two objects. Separating the comparison code allows for the algorithm to be written in a more general way.

Delegates Overview

Delegates have the following properties: