我按照自己喜歡的方式做了一些代碼對齊,使用vim - 然後嘗試將它粘貼到VS2008中。 Voila,2008決定重新格式化它,除去所有我添加的空白,使一些聲明精美對齊。如何讓VS2008粘貼代碼而不用重新格式化(改變空格)?
有沒有辦法讓VS2008(A)粘貼而不改變空格或(B)如下所示對齊代碼?
public int SomePropertyName { get; set; }
public Nullable<string> SomeOtherProperty { get; set; }
public Nullable<int> YetAnotherProperty { get; set; }
其中這樣當我把它粘貼到VS2008結束:
public int SomePropertyName { get; set; }
public Nullable<string> SomeOtherProperty { get; set; }
public Nullable<int> YetAnotherProperty { get; set; }
+1,這是更好的解決方案。我會留下我的答案,嗯,參考。 – 2010-07-20 19:49:08
+1,thx今天節省我的時間。 – sisdog 2011-05-10 19:20:29