当我转到SqlConnection
类的MSDN页面时,它仅显示C#和VB中的示例。 MSDN为什么不显示C++示例?
我对C++示例如何解决C++中缺少using
关键字特别感兴趣。
最佳答案
嗯...看完What is the Managed C++ equivalent to the C# using statement后,似乎相当于:
using (SqlConnection connection = new SqlConnection(connectionString))
{
// SqlCommand and so...
}
实际上是:
{
SqlConnection conn(connectionString);
// SqlCommand and so...
}
这是非常令人印象深刻的,因为C++不会像那样“缺少”
using
语句,从而完全不需要!我认为C#/ VB程序员没有充分意识到C++的优势(我当然没有:)。关于.net - 在C++/.NET中使用SqlConnection,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8036453/