本文介绍了[ASK]-将对象转换为整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,专家们,我想问您有关将对象转换为整数的最佳方法.这是我的把戏:):

Hi experts, i wanna ask you about the best way convert object to integer. This is my trick :) :

int value = ((IConvertible)ExecuteScalarQuery(partID, sid)).Int32(null));



有没有比我的技巧专家更好的技巧. :confused:



Is there any trick that certainly better than my trick experts.. ?? :confused:

推荐答案



<pre lang="cs">int test = int.Parse(string.Format("{0}", myobject))



这篇关于[ASK]-将对象转换为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 13:20