在Visual Studio中怎樣快速添加程式碼片段

來源:互聯網
上載者:User

以前一直只知道,鍵入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 ) { }}

16 相依性屬性

鍵入propdb,再按兩次tab鍵,會產生相依性屬性定義代碼。













 


 


 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.