Visual Studio Intellisense methods with underscore don't appear
问题 I'm using VS2012, and one of my project-wide Javascript function namespaces has all of its exposed methods beginning with underscores _ , for example: var NameSpace = { _aMethod = function () { }, _anotherMethod = function () { } }; I created a quick vsdoc file for the namespace, and the namespace itself appears, but none of the methods do . NOTE: If I remove the _ at the beginning of the methods, it works like a charm. // This would work, and show up in the VSDOC var NameSpace = { aMethod =