CellsAutomate.Mutator.Mutations.ReplaceCommandMutation.GetHandlerOfType C# (CSharp) Метод

GetHandlerOfType() приватный Метод

private GetHandlerOfType ( Type type ) : ICommand>.Func
type System.Type
Результат ICommand>.Func
        private Func<int, ICommand> GetHandlerOfType(Type type)
        {
            return _handlers.Find(handler => handler.Method.ReturnType == type);
        }