当我运行此代码时,我遇到了一个错误(异常e)部分我不知道为什么和编译器说“一个名为'e'的局部变量不能在此范围内声明,因为它会给'e'赋予不同的含义,'e'已在'父或当前'范围内用于表示其他内容“
try
{
//Form Query which will insert Company and will output generated id
myCommand.CommandText = "Insert into Comp(company_name) Output Inserted.ID VALUES (@company_name)";
myCommand.Parameters.AddWithValue("@company_name", txtCompName);
int companyId = Convert.ToInt32(myCommand.ExecuteScalar());
//For the next scenario, in case you need to execute another command do it before committing the transaction
myTrans.Commit();
//Output Message in message box
MessageBox.Show("Added", "Company Added with id" + companyId, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception e)
{
try
{
myTrans.Rollback();
}
catch (SqlException ex)
{
if (myTrans.Connection != null)
{
MessageBox.Show("An exception of type " + ex.GetType() +
" was encountered while attempting to roll back the transaction.");
}
}
MessageBox.Show("An exception of type " + e.GetType() +
"was encountered while inserting the data.");
MessageBox.Show("Record was written to database.");
}
finally
{
myConnection.Close();
}
希望你的回复!谢谢!
答案 0 :(得分:4)
在本地范围内的其他地方有一个名为e
的变量,并且无法消除两者之间的歧义。
您很可能位于名为EventArgs
的{{1}}参数的事件处理程序中,您应该将其中一个e
标识符重命名为其他标识符。
以下示例演示了此问题:
冲突的参数名称
e
冲突的局部变量
void MyEventHandler(object source, EventArgs e)
// ^^^
{
try
{
DoSomething();
}
catch (Exception e)
// ^^^
{
OhNo(e);
// Which "e" is this? Is it the Exception or the EventArgs??
}
}
匿名函数(lambda)
void MyMethod()
{
decimal e = 2.71828;
// ^^^
try
{
DoSomething();
}
catch (Exception e)
// ^^^
{
OhNo(e);
// Which "e" is this? Is it the Exception or the Decimal??
}
}
请注意,以下内容不会导致相同的错误,因为您可以使用void MyMethod()
{
decimal e = 2.71828;
// ^^^
var sum = Enumerable.Range(1, 10)
.Sum(e => e * e); //Which "e" to multiply?
// ^^^
}
关键字消除歧义:
this
答案 1 :(得分:0)
这意味着你早先声明了一个名为e的变量,现在在同一个代码块中,或者它内部的一个块(这个try / catch块)你再次声明它。将例外e更改为Exception except
,它可能会有效。