PL/SQL SQL Coding Guideline 42 - Always use a numeric FOR loop to process a dense array

條款四十二,總是使用 NUMERIC FOR loop 去處理 dense array。 ...

March 7, 2017 · 1 min · 86 words · Larry Nung

'C# 7.0 - Deconstruction'

C# 7.0 新增 Deconstruction,可將 Tuple、結構、類別的成員拆解使用。 ...

March 6, 2017 · 1 min · 302 words · Larry Nung

'C# 7.0 - Tuple'

C# 7.0 新增了 Value Type 的 Tuple,因為是 Value Type,所以對 GC 的負擔會比較少。另外增加了一些語法糖,改進了本來 Tuple 類別可讀性不佳的問題。 ...

March 4, 2017 · 1 min · 442 words · Larry Nung

PL/SQL SQL CODING GUIDELINE 39 - Never use GOTO statements in your code

條款三十九,從不使用 GOTO 語句。 像是下面這樣的程式。 ...

March 3, 2017 · 1 min · 213 words · Larry Nung

PL/SQL SQL Coding Guideline 41 - Always use a cursor FOR loop to process the complete cursor results unless you are using BULK operations

條款四十一,總是使用 CURSOR for loop,除非使用 Bulk operations。 ...

March 3, 2017 · 1 min · 97 words · Larry Nung

PL/SQL SQL CODING GUIDELINE 40 - Always label your loops

條款四十,如果程式中有 loop,嘗試使用 label 讓他的區塊範圍更為清楚。 ...

March 2, 2017 · 1 min · 121 words · Larry Nung

Visual Studio 2017 - Live unit testing

要啟動 Visual Studio 2017 Live Unit Testing 功能,可點選 [Test | Live Unit Testing | Start] 主選單選項。 ...

March 1, 2017 · 1 min · 120 words · Larry Nung

Visual Studio 2017 - Improved Code Navigation

Visual Studio 2017 對程式碼的巡覽做了些強化,[Edit | Go To] 主選單選項內有著所有的巡覽功能。 ...

February 22, 2017 · 1 min · 152 words · Larry Nung

Visual Studio 2017 - Find all references

Visual Studio 2017 針對 Find all references 視窗做了些強化,在要查詢 Reference 的地方按下滑鼠右鍵,在彈出的滑鼠右鍵快顯選單中點選 Find All References 選單選項,將 Find all references 視窗開啟。 ...

February 19, 2017 · 1 min · 407 words · Larry Nung

Visual Studio 2017 - Roaming Extension Manager

Visual Studio 2017 以前安裝的 Extension 無法同步,所以在不同電腦間 Extension 都需要自行安裝。 ...

February 18, 2017 · 1 min · 116 words · Larry Nung