2
,比如我有如何顯示其他重載選擇的方法?
extension = new List<string>();
如果我看源我可以看到有
public List(int capacity);
和
public List(IEnumerable<T> collection);
有沒有什麼辦法來激活一個提示,會告訴我有什麼可能的論據是?
,比如我有如何顯示其他重載選擇的方法?
extension = new List<string>();
如果我看源我可以看到有
public List(int capacity);
和
public List(IEnumerable<T> collection);
有沒有什麼辦法來激活一個提示,會告訴我有什麼可能的論據是?
這是由「智能感知」自動提供的。
當您在上面的源代碼中輸入左括號時,會出現「提示」。或者將光標放在左括號後面並按Ctrl + Shift +空格。