摘要: /// /// 转换 /// public static class ConversionHelper { #region 数据格式转换 /// /// 转换成Int /// /// 输入值 /// public static int ToInt(this object inputValue) { return inputValue.IsInt() ? int.Parse(inputValue.ToStringValue()... 阅读全文
posted @ 2014-04-10 23:10 apegu 阅读(451) 评论(0) 推荐(0) 编辑