首页 > 代码库 > 泛型的简单用法<T>
泛型的简单用法<T>
1 private void Form1_Load(object sender, EventArgs e) 2 { 3 Print<string>("here"); 4 Print<int>(1222); 5 6 GenericCollections<string> gcl = new GenericCollections<string>(); 7 gcl.Add("这是一个字符串的示例"); 8 DisplayResult<string>(gcl); 9 GenericCollections<string> gcl2 = new GenericCollections<string>();10 gcl2.Add(true.ToString());11 DisplayResult<string>(gcl2);12 Console.ReadLine();13 }14 15 public void Print<T>(T argument)16 {17 Console.WriteLine(argument.ToString());18 }19 20 void DisplayResult<T>(GenericCollections<T> gcl)21 {22 foreach (T s in gcl)23 {24 Console.WriteLine(s.ToString());25 }26 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。