disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 11.2.6.xml
blobdf539b4a6cc5381d74266042d0c731bf9bcfaa5c
1 <?xml version="1.0"?>
2 <clause number="11.2.6" title="Delegate types">
3   <paragraph>A delegate is a data structure that refers to one or more methods, and for instance methods, it also refers to their corresponding object instances. </paragraph>
4   <paragraph>
5     <note>[Note: The closest equivalent of a delegate in C or C++ is a function pointer, but whereas a function pointer can only reference static functions, a delegate can reference both static and instance methods. In the latter case, the delegate stores not only a reference to the method's entry point, but also a reference to the object instance on which to invoke the method. end note]</note>
6   </paragraph>
7   <paragraph>Delegate types are described in <hyperlink>22</hyperlink>. </paragraph>
8 </clause>