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

你可能感兴趣的文章
Oracle的静默安装 升级和卸载 参考规范
查看>>
高效存储过程分页
查看>>
电脑用U盘启动
查看>>
Web漏洞扫描
查看>>
使用xtrabackup做数据库的增量备份
查看>>
“程序已停止工作”问题的解决方法,停止解决方法
查看>>
[c++] 幂法求特征向量
查看>>
WEB项目(B/S系统)打包安装(总结篇)
查看>>
Cartographer源码阅读(8):imu_tracker
查看>>
U盘,移动硬盘显示显示需要格式化怎么修复
查看>>
JVM基础和调优(一)
查看>>
ICommand in Silverlight
查看>>
复选框、单选按钮、下拉列表的定义
查看>>
webdynpro的select_option示例
查看>>
img src 使用 base64 图片数据
查看>>
MapReduce计算每年最高温度
查看>>
Ruby快速入门
查看>>
UVA 12118 Inspector's Dilemma(连通性,欧拉路径,构造)
查看>>
一台电脑同时运行多个tomcat配置方法
查看>>
让文本框只能输入数字
查看>>