メソッドが値を返すことができるが、値が文字列ではない場合、メソッドで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?
}
}
例外を返す方法は?