博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VISUAL STUDIO 使用技巧大全 中英文版本之 一 - 命名空间引用管理
阅读量:6239 次
发布时间:2019-06-22

本文共 1381 字,大约阅读时间需要 4 分钟。

http://msdn.microsoft.com/en-us/library/bb514115.aspx 

Removing Unused Usings

 

The Remove Unused Usings option in the Visual Studio user interface removes using directives, using aliases, and extern aliases that are not used in the source code. There are two ways to call the operation:

  • Main Menu - On the Edit menu, point to IntelliSense, point to Organize Usings, and then click Remove Unused Usings.

  • Context Menu - Right-click anywhere inside the code editor, point to Organize Usings, and then click Remove Unused Usings.

    Note Note

    If you perform Remove Unused Usings on source code that does not build, some required using directives may be removed.

The following example shows the outcome of performing Remove Unused Usings on source code.

 

Before

After

 
 
using System;using System.Linq;using System.Collections.Generic;using System.Text;using System;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("test");        }    }}
 
 
using System;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("test");        }    }}

In the previous example, only System is used later in the source code. The other using directives, including the duplicate System using directive, are removed.

 

转载于:https://www.cnblogs.com/taoqianbao/p/3886711.html

你可能感兴趣的文章
在Eclipse中制作和使用struts2配置文件提示插件
查看>>
操作系统
查看>>
从需求向设计转化的密码
查看>>
360浏览器极速模式pdf文件不能预览问题
查看>>
CAS:PKIX path building failed
查看>>
测试php与mysql的连接是否成功的多种方法
查看>>
15条SQLite3数据库常用语句
查看>>
二叉树中找两个结点的最近的公共祖先结点
查看>>
Mac下sqlite3的学习总结
查看>>
基本配置实验
查看>>
使用适合的质量工具
查看>>
Linux 必学和要掌握的路径
查看>>
WBS分解
查看>>
centos5.6安装FTP
查看>>
http-equiv,很强大
查看>>
安装字体与ubuntu-tweak
查看>>
平均值方法:Avg API-Medoo使用指南
查看>>
centos6,7没有安装ifconfig命令的解决方法
查看>>
web页面禁用右键、禁用左键、禁止查看源代码、禁用触摸板
查看>>
Linux Kernel Device Tree 配置框架
查看>>