Nemerle.VisualStudio.Project.NemerleProjectNode.GetAutomationObject C# (CSharp) Méthode

GetAutomationObject() public méthode

Gets the automation object for the project node.
public GetAutomationObject ( ) : object
Résultat object
        public override object GetAutomationObject()
        {
            if (_automationObject == null)
                _automationObject = new NemerleOAProject(this);
            return _automationObject;
        }