摘要: 1.泛型:先声明,延迟编译。 public static void DoSome<T>(T t) { Console.WriteLine(t); } 这个方法就是泛型方法,先申明参数为T,不知道具体是什么类型。 使用的时候DoSome<int>(1); DoSome<string>("hello") 阅读全文
posted @ 2019-02-11 22:09 H哥努力啊 阅读(725) 评论(1) 推荐(1) 编辑