Auto assign assembly's build/revision number

在做軟體開發時,總是會碰到遞增產品版號的需求,通常這種時候我們會撰寫 Script 在建置之前對 Assembly.vs 檔內的版本資訊進行修改,以達到像這樣的需求。 ...

August 12, 2014 · 1 min · 277 words · Larry Nung

.NET - A Simple Finite State Machine Solution

想要用實現有限狀態機的功能,看了一下網路上的解決方案以及 State Pattern,覺得都不怎麼適用,因此利用 Tuple 與 Dictionary 去實作了一個簡易又可重複使用的 State Machine: ...

May 15, 2014 · 1 min · 432 words · Larry Nung