.NET/C#
Catch(Exception)
아몰라
2010. 3. 25. 19:57
try
{
SB sb = new SB();
}
catch(Exception e)
{
Console.WriteLine(e.Message);
}
어떠한 에러가 날라오는지 확인할수 있다.