摘要: class Program { static void Main(string[] args) { string str = test(null); } private static string test(object obj) { return "object"; } private static string test(string str) { return "string"; } ... 阅读全文
posted @ 2013-02-17 11:45 最近有点小胖 阅读(318) 评论(0) 推荐(0) 编辑