SonarQube - Rules
SonarQube 的 Rules 頁面提供我們查詢可供分析的 Rule。 ...
SonarQube 的 Rules 頁面提供我們查詢可供分析的 Rule。 ...
Jenkins 安裝 SonarQube Plugin 後,雖然能用 Jenkins 分析程式並將分析結果送至 SonarQube,但是不論分析的結果是否有通過 SonarQube Quality Gate, Jenkins 的 job 都是會過。 ...
如果要將 SonarQube 整合 Jenkins,讓 Jenkins 幫我們運行並將分析送到 SonarQube,可以使用 Jenkins 的 SonarQube Plugin。 ...
SonarQube 有些套件未放置在 Update Center,無法透過 Update Center 進行安裝,必須自行手動安裝。 ...
SonarQube 提供 Update Center 可以讓我們很容易的控管 SonarQube 外掛套件。要使用 Update Center,可點選 [Administrator | System | Update Center]。 ...
C# 7.0 開始支援 Throw expressions。 三元運算中可以視需要直接丟出 exception。 ...
C# 7.0 擴展了 Expression bodied。 開始支援建構子。 ... class Program { ... public Program() => Console.WriteLine("Program()"); ... } ... 支援解構子。 ...
條款四十二,總是使用 NUMERIC FOR loop 去處理 dense array。 ...
C# 7.0 新增 Deconstruction,可將 Tuple、結構、類別的成員拆解使用。 ...
C# 7.0 新增了 Value Type 的 Tuple,因為是 Value Type,所以對 GC 的負擔會比較少。另外增加了一些語法糖,改進了本來 Tuple 類別可讀性不佳的問題。 ...