Docu.Documentation.Method.Method C# (CSharp) Method

Method() public method

Initializes a new instance of the Method class.
public Method ( Docu.Parsing.Model.MethodIdentifier identifier, DeclaredType type ) : System
identifier Docu.Parsing.Model.MethodIdentifier /// The identifier. ///
type DeclaredType /// The type. ///
return System
        public Method(MethodIdentifier identifier, DeclaredType type)
            : base(identifier)
        {
            Type = type;
            Returns = new Summary();
        }