我正在接收一個對象,並根據參數將其轉換爲特定的C#對象。將json對象動態地轉換爲特定的C#類對象
我可以替換下列功能嗎?
object objectTobeParsed;
switch (formId)
{
case 1: var myObject = objectTobeParsed as MyClass;
/* other cases here */
/* other cases here */
/* other cases here */
}
正如你所看到的,有很多開關情況。
謝謝, Anish。
最新的問題? – thumbmunkeys
我只是想避免使用elegent c#代碼的冗長切換。 –