摘要: 当我们想把一个字符串转换成整型int的时候,我们可能会想到如下三种方式:int.Parse,Convert.ToInt32和int.TryParse。到底使用哪种方式呢? 先来考虑string的可能性,大致有三种可能:1、为null2、不是整型,比如是字符串3、超出整型的范围 基于string的三种可能性,分别尝试。 □ 使用int.Parse string str = null; ... 阅读全文
posted @ 2015-03-23 09:31 Darren Ji 阅读(2210) 评论(3) 推荐(1) 编辑
摘要: 在C#中,在处理字符串拼接的时候,使用StringBuilder的效率会比硬拼接字符串高很多。到底有多高,如下: static void Main(string[] args) { string str1 = string.Empty; Stopwatch sw1 = new Stopwatch(); ... 阅读全文
posted @ 2015-03-23 08:52 Darren Ji 阅读(1909) 评论(0) 推荐(1) 编辑

我的公众号:新语新世界,欢迎关注。