1.不用重複輸入常用的class name
在VB可以在段落中使用with myclass, 但C#無法
因此可能會一直出現
using myNamespace
....
myclass.a.xxx
myclass.b.xxx
myclass.c.xxx
使用using static
using static myNamespace.myClass;
...
a.xxx
b.xxx
c.xxx
2.自動格式化
對於一開始coding的我,經常會在輸入時胡亂打空白orz...或是胡亂縮排
或是使用複製貼上大法之後排版亂七八糟,這時候使用
Edit> Advanced> Format Selection (Ctrl+K, Ctrl+F)
就可以自動整頓好了(XD複製貼上更方便了)
3. 自動換行
記事本有這個功能,開啟自動換行可以不用一直左右捲動頁面
vs也有此功能,可以從 Edit> Advanced> Word Wrap開啟
4. 查看method overload
在method的()中間按ctrl+shift+space
沒有留言:
張貼留言