1 / 4

C# Delegates

CS 3260. C# Delegates. C++ Function Pointers C# Method References Groundwork for Lambda Functions. Overview. Reference Type Type Declaration delegate void MyDelegate ( int ival , double dval ); Variable Declaration MyDelegate mdel = new MyDelegate ( MyMethod ); Method Declaration

harlan
Download Presentation

C# Delegates

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CS 3260 C# Delegates

  2. C++ Function Pointers C# Method References Groundwork for Lambda Functions Overview

  3. Reference Type • Type Declaration • delegate void MyDelegate(intival, double dval); • Variable Declaration • MyDelegatemdel = new MyDelegate(MyMethod); • Method Declaration • void MyMethod(intiv,doubledv){ … } • Method Call via the Delegate • mdel(100,5.5); • Type-Safe • Can have generic parameters C# Delegates

  4. delegate T Gdelegate<T,K>(T tval,Kkval); Func<> Action<> Generic Delegate

More Related