我们在方法中经常使用try catch语句,如果方法可以返回一个值,但该值不是字符串,如何返回异常信息?例如:
public int GetFile(string path)
{
int i;
try
{
//...
return i;
}
catch (Exception ex)
{
// How to return the ex?
// If the return type is a custom class, how to deal with it?
}
}
如何返回异常?