Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum What is callback method in C#? A "callback" is a term that refers to a coding design pattern. In this design pattern executable code is passed as an argument to other code and it is expected to call back at some time. To create a Callback in C#, function address will be passed inside a variable. So, this can be achieved by using Delegate.
Related Topics