我正在執行一個存儲過程並返回一個字符串。該字符串設置爲根據條件返回1
,0
或"USER DOES NOT EXISTS"
。嘗試抓住不好的編程練習
只是想知道以下是不好的編程習慣。
string result = _db.GetParameterValue(cmdObj, "@strMessage").ToString();
try
{
int a = int.Parse(result);
if (a == 1)
Console.WriteLine("A");
else
Console.WriteLine("B");
}
catch
{
Console.WriteLine(result);
}
Console.WriteLine(result);
是的,明白了。謝謝。 – Rain 2012-04-28 07:50:27