Boo.BooLangService.Document.Nodes.MethodTreeNode.MethodTreeNode C# (CSharp) Метод

MethodTreeNode() публичный Метод

public MethodTreeNode ( ISourceOrigin sourceOrigin, string returnType, string containingClass ) : System.Collections.Generic
sourceOrigin ISourceOrigin
returnType string
containingClass string
Результат System.Collections.Generic
        public MethodTreeNode(ISourceOrigin sourceOrigin, string returnType, string containingClass)
            : base(sourceOrigin)
        {
            ReturnType = returnType;
            ContainingClass = containingClass;
            Overloads = new List<MethodTreeNode>();
            Parameters = new List<MethodParameter>();
        }