本文介绍了C#中的VB.NET语法对应项.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下与c#中的语句相对应的是什么?

What''s the counterpart of the following statement in c#?

Try

Catch sqlex As SqlException When sqlex.Number = 547

End Try

推荐答案

try{
// Some code here
}
catch(SqlException sqlException){
if( sqlException.Number == 547){
// Do something
)
else{
// Do something
}
}



如果要跟踪大量数字,请使用switch.



If you are tracking a lot of numbers, then use switch.


try {
}
catch (SqlException sqlex) {
    sqlex.Number = 547;
}




这篇关于C#中的VB.NET语法对应项.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 00:45