Alan Cai's Blogs
只埋头苦干是不行的,有时候还得抬头看看外面的世界。
摘要: 1 using System; 2 using System.Text; 3 4 namespace Labs { 5 public class BigIntegerUtility { 6 public static string Multiply(string one, string other) { 7 if (string.IsNullOrEmpty(one) || string.IsNullOrWhiteSpace(one)) { 8 throw new ArgumentNullException("o... 阅读全文
posted @ 2012-02-06 10:34 Alan Cai 阅读(403) 评论(0) 推荐(0) 编辑