C# Delegates Revealed for Unity | Faramira

Faramira SG
6 min readSep 1, 2019

Delegates are a type that represents references to methods with a specific function signature. In short, delegates are references to methods.

Read a tutorial on Solving the 8 puzzle problem using A* (star) algorithm

An instantiated delegate can be associated with any method that has a compatible signature and return type. One can then call the method through the…

--

--