Skip to content

jluispcardenas/Delegates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Delegates

Implementation of delegates in C ++

Use

int sum(int a, int b) {
    return a + b;
}

delegate <int, int, int> mDelegate;

mDelegate.bind(suma);

int result = mDelegate(2, 3);

Licence

This project is licensed under the MIT License

About

implementation of delegates metodology in C++

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages