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);
        }