関数内の戻りコードと変数に応じて、関数を終了する前に usererror 文字列を設定したいと考えています。
私は現在持っています:
Dim RetVal as RetType
try
...
if ... then
RetVal = RetType.FailedParse
end try
endif
...
finally
select case RetVal
case ...
UserStr = ...
end select
end try
return RetVal
return RetType.FailedParse を使用して、finally ブロックでこれにアクセスすることは可能ですか?