Nemerle.VisualStudio.Project.NemerleProjectNode.GetAutomationObject C# (CSharp) Method

GetAutomationObject() public method

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