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

Create() public method

public Create ( ) : Delegate
return System.Delegate
            public Delegate Create()
            {
                Delegate d = (Action<int>)delegate { };
                return d;
            }
        }
Answer3.DelegateFactory