首页 > 代码库 > 【转】在Visual Studio中怎样快速添加代码段
【转】在Visual Studio中怎样快速添加代码段
原文网址:http://blog.csdn.net/yl2isoft/article/details/9735527
以前一直只知道,键入prop,再按两次tab键,会生成自动属性代码。
今天闲着无事,就整理了一下在Visual Studio中其他快速添加代码段的方法。
1.自动属性
键入prop,再按两次tab键,会生成自动属性代码。
- public int MyProperty { get; set; }
通过实验发现,输入pr,pro,proc等,再按两次tab键,同样会生成自动属性代码段。
2.class
键入class,再按两次tab键,会生成类定义代码。
- class MyClass
- {
- }
3.interface
键入interface,再按两次tab键,会生成接口定义代码。
- interface IInterface
- {
- }
4.struct
键入struct,再按两次tab键,会生成结构体定义代码。
- struct MyStruct
- {
- }
5.for
键入for,再按两次tab键,会生成for循环代码。
- for (int i = 0; i < length; i++)
- {
- }
6.foreach
键入foreach,再按两次tab键,会生成foreach循环代码。
- foreach (var item in collection)
- {
- }
7.while
键入while,再按两次tab键,会生成while循环代码。
- while (true)
- {
- }
8.do-while
键入do,再按两次tab键,会生成do-while循环代码。
- do
- {
- } while (true);
10.try-catch
键入try,再按两次tab键,会生成异常处理代码。
- try
- {
- }
- catch (Exception)
- {
- throw;
- }
11.if语句
键入if,再按两次tab键,会生成条件语句代码。
- if (true)
- {
- }
12.enum
键入enum,再按两次tab键,会生成枚举定义代码。
- enum MyEnum
- {
- }
13.namespace
键入namespace,再按两次tab键,会生成命名空间代码。
- namespace MyNamespace
- {
- }
14.switch
键入switch,再按两次tab键,会生成分支代码。
- switch (switch_on)
- {
- default:
- }
15 Exception
键入Exception,再按两次tab键,会生成如下代码。
- [global::System.Serializable]
- public class MyException : Exception
- {
- public MyException() { }
- public MyException( string message ) : base( message ) { }
- public MyException( string message, Exception inner ) : base( message, inner ) { }
- protected MyException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context ) : base( info, context ) { }
- }
【转】在Visual Studio中怎样快速添加代码段