Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<clause number="11.2.6" title="Delegate types">
<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>
<paragraph>
<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>
</paragraph>
<paragraph>Delegate types are described in <hyperlink>22</hyperlink>. </paragraph>
</clause>