使用using语句将代码转换为完全限定名称

时间:2016-12-21 02:15:32

标签: c# mono xbuild

如何将最初使用using指令编写的文件转换为完全限定名称?

E.g。从

开始
using System;
using System.Collections.Generic;
using System.Net;
using System.IO;
using System.Text;
using System.Xml.XPath;

namespace ChatterBotAPI
{
    public interface ChatterBotSession
    {
        ChatterBotThought Think(ChatterBotThought thought);
        string Think(string text);
    }

    internal class PandorabotsSession : ChatterBotSession
    {
        private readonly IDictionary<string, string> vars;

        public PandorabotsSession(string botid)
        {
            vars = new Dictionary<string, string>();
            vars["botid"] = botid;
            vars["custid"] = Guid.NewGuid().ToString();
        }

        public ChatterBotThought Think(ChatterBotThought thought)
        {
            ...
}

到这个

namespace ChatterBotAPI
{
    public interface ChatterBotSession
    {
        ChatterBotThought Think(ChatterBotThought thought);
        string Think(string text);
    }

    internal class PandorabotsSession : ChatterBotSession
    {
        private readonly System.Collections.Generic.IDictionary<string, string> vars;

        public PandorabotsSession(string botid)
        {
            vars = new System.Collections.Generic.Dictionary<string, string>();
            vars["botid"] = botid;
            vars["custid"] = System.Guid.NewGuid().ToString();
        }

        public ChatterBotThought Think(ChatterBotThought thought)
        {
            ...
}

1 个答案:

答案 0 :(得分:2)

  • Install Resharper Tool

  • 转到Resharper标签=&gt;选项...

  • 转到代码编辑部分=&gt; C#=&gt;代码风格

  • 勾选首选完全限定参考。 (并保存更改)

  • 右键单击您的项目并选择CleanUp代码。 (或按Ctrl E + Ctrl C)

  • 选择完全清理,你很高兴(如果你不想完全清理,那么你可以制作自己的个人资料,只选择要应用的编码风格。)