原来函数模板可以对托管使用的(对类不行,编译器报告不能对模板类使用托管):
template <typename T>
String * F(T* a)
{
return a->ConnectionString;
}
int _tmain()
{
// TODO: 请用您自己的代码替换下面的示例代码。
String* connectionString = S"Server=localhost;DataBase=;Integrated Security=SSPI";
SqlConnection* m = new SqlConnection(connectionString);
Console::WriteLine(F(m));
Console::Read();
return 0;
}