C# - 当前文件中使用了命名空间中的哪些成员?

时间:2016-07-20 19:44:33

标签: c# visual-studio

通常,当我在Visual Studio中打开C#文件并在顶部看到using语句列表时,我想确切地知道当前文件中正在使用这些命名空间中的哪些成员。有没有一种快速的方法来使用Visual Studio?

例如:

using System.Collections.Generic;

public class Class
{
    public IList<string> Method()
    {
        return new List<string>();
    }
}

这是一个微不足道的课程,我可以通过检查告诉我们正在使用IList命名空间中的ListSystem.Collections.Generic。对于更长的课程,我可以让Visual Studio为我做这个吗?

我们假设没有未使用的using s。

0 个答案:

没有答案