How to dynamically cast an object of type string to an object of type T

前端 未结 3 1834
北海茫月
北海茫月 2021-02-15 12:17

I have this XML document


False

         


        
3条回答
  •  抹茶落季
    2021-02-15 12:24

    You can use Convert.ChangeType :

    object value = Convert.ChangeType(stringValue, destinationType);
    

提交回复
热议问题