Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C++ 编写。Visual Studio 2010 智能感知按字母顺序显示方法。有没有办法让它以原始顺序(它们在源代码中出现的顺序)显示方法?
从另一个问题的答案:
在 Visual Studio 的 Intellisense 中无法控制排序。如果您确实有多个构造函数(或方法),那么在智能感知方面,您唯一真正的控制是使用带有相应 EditorBrowsableState 的 EditorBrowsable。这允许您在智能感知中隐藏构造函数(或方法),或者仅以“高级”模式显示它,但不允许您重新排序它们。