Nemerle.VisualStudio.Project.NemerleProjectNode.GetAutomationObject C# (CSharp) Метод

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

Gets the automation object for the project node.
public GetAutomationObject ( ) : object
Результат object
        public override object GetAutomationObject()
        {
            if (_automationObject == null)
                _automationObject = new NemerleOAProject(this);
            return _automationObject;
        }