嗨,我将代码从 VB.NET 转换为 C#。我使用 Developer Fusion 进行了转换。最初我有很多错误,我清除了除此之外的所有错误。这是 VB.net 代码:
If cxnDb.State = ConnectionState.Open Then
If AppSettings("skipCredits") Is Nothing Then
Console.WriteLine("CREDITS")
chargeCredits(cxnDb)
Console.WriteLine()
End If
这是我拥有的等效 C# 代码:
if (cxnDb.State == ConnectionState.Open)
{
if (System.Configuration.ConfigurationManager.AppSettings["skipCredits"] == null)
{
Console.WriteLine("CREDITS");
chargeCredits( ref cxnDb);
Console.WriteLine();
}
但是当我尝试构建我的解决方案时,我得到:
无法将“cxnDb”作为 ref 或 out 参数传递,因为它是“使用变量”错误。
如果我删除chargeCredits(cxnDb);
我得到的 ref 关键字,它必须与 ref 关键字一起传递。
有人可以帮助我吗?
更新: 我的 C#chargeCredits 方法实现如下:
private static void chargeCredits( SqlConnection cxnFinanceDb)
{
using (SqlCommand cmdCredits = cxnDb.CreateCommand())
{
cmdCredits.CommandType = CommandType.StoredProcedure;
cmdCredits.CommandText = "bill_Credits";
cmdCredits.CommandTimeout = 60;
try
{
cmdCredits.ExecuteNonQuery();
}
catch (SqlException exDetail)
{
Console.WriteLine(" + cmdCredits.SqlException :: " + exDetail.Message);
}
catch (Exception exDetail)
{
Console.WriteLine(" + cmdCredits.Exception :: " + exDetail.Message);
}
finally
{
cmdCredits.Dispose();
}
}
}
在这里,我在我的方法中删除了 ref 以使其工作。