摘要:
泛型是一种特殊的类型,它把指定类型的工作推迟到客户端代码声明并实例化类或方法的时候进行。下面是两个经典示例:1.输入一个字符串,转化为想要的类型。利用泛型的特性,返回值可以是指定的类型。2.比较两个对象,返回值较大的一个。usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceFamilyManage{classCGeneric{//数据转换staticpublic TConvert<T>(strings)whereT:IConvertible{return(T)System.Convert.Cha 阅读全文