Abc.NCrafts.Quizz.Questions._024.Answer1.DelegateFactory.Create C# (CSharp) Method

Create() public method

public Create ( CustomAction action ) : Delegate
action CustomAction
return System.Delegate
            public Delegate Create(CustomAction<int> action)
            {
                Delegate d = (Action<int>)action.Invoke;
                return d;
            }
        }
Answer1.DelegateFactory