我需要了解这两种处理例外情况的做法是否更好? 或者说要做得更好的其他方式。
try{
if (String.IsNullOrEmpty(filePath))
{
throw new ArgumentNullException("The path is null or empty.", "filePath");
}
或
try{
if (String.IsNullOrEmpty(filePath))
{
Console.WriteLine("The path is null or empty");
}