标签:public eof 方法 get typeof turn 泛型方法 tostring bsp
public T MyMethod<T, S>(T t, S s)
{
object o = t.ToString() + s.ToString();
return (T)o;
}
string s = MyMethod<string, int>("45", 56);// s=4556;
将字符串转为泛型类型
T value = (T)Convert.ChangeType(str, typeof(T));
标签:public eof 方法 get typeof turn 泛型方法 tostring bsp
原文地址:https://www.cnblogs.com/bwdblogs/p/10014974.html