Let SerializeField can display more useful information which is ICollection
為了有時候跨職能(ex.企劃/程式)的欄位設計能更有效的溝通,
針對序列化的資料集合欄位做一個非常簡易的顯示優化
A. Display by typical string / 顯示自定義前綴字
[NameArray("Your Typical Prefix")]
B. Display by Customized format / 顯示格式化
[NameArray("Your Customized {0} format ", true)]
C. Display by Enum / 顯示列舉
[NameArray(typeof(YourEnum)]
D. Both all
[NameArray(typeof(YourEnum),"Your Typical Prefix")]
[NameArray(typeof(YourEnum), "Your Typical Prefix", startOffestIndex)]