NClass.Core.Models.ClassModel.AddDelegate C# (CSharp) Method

AddDelegate() public method

/// The language does not support delegates. ///
public AddDelegate ( ) : DelegateType
return DelegateType
        public DelegateType AddDelegate()
        {
            DelegateType newDelegate = Language.CreateDelegate();
            AddEntity(newDelegate);
            return newDelegate;
        }