DEV Community

Discussion on: Action-Oriented C#

Collapse
 
smartcodinghub profile image
Oscar • Edited

You can use delegates or functional interfaces to have alias.

A functional interface is an interface with only one method, as suggested above.

With the delegate, you can have:

public delegate decimal CalculateScore();

This is totally compatible with Lambdas and Funcs. And a safe way to do a Strategy Pattern like you want.