我不确定程序员是否能够以这种方式优先于Intellisense。
存在方法属性(或其他解决方案),让 IntelliSense 在通用建议列表中显示自定义扩展方法,而不是全部列表?。
仅举一个例子,这是扩展,在我提出问题之前,它遵循@Hans Passant建议,但它显示在所有列表中
Public Module StackExtensions
<DebuggerStepThrough>
<Extension>
<EditorBrowsable(EditorBrowsableState.Always)>
Public Sub PushRange(Of T)(ByRef sender As Stack(Of T), ByVal items As T())
For Each item As T In items
sender.Push(item)
Next item
End Sub
End Module