C# Convert.ChangeType()

Convert.ChangeType() 將未知類型轉換爲已知類型spa

long content = 123;
object result = Convert.ChangeType(content, typeof(int));

其餘經常使用的轉換方法舉例:code

一、Convert.ToInt32(content)blog

二、int i=Int32.Parse(content)it

三、int i=0;nt.TryParse(content,out i)class

四、int i=(Int32)contentobject

五、int? i=content as Int32 (content 必須爲可爲空數值)方法

相關文章
相關標籤/搜索