2015年2月5日

[C#] 動態取得Class裡的method及property

開發專案過程中有個需求是需要動態取Model裡的欄位,在這紀錄一下因為要先做另一個部分,這部分才能繼續作。

Type T = Typeof("Namespace.Class,專案名稱")

接著即可透過
T.Getmethod及T.Getproperty來獲得class裡頭的方法及屬性欄位


沒有留言:

張貼留言

<Javascript> How to uncompressed GZIP at front-end using Javascript

It's been a while I haven't share my coding work. In this article I would like to share how to receive a Gzip file via stream, unzip...