Is there a methodology -- and if so, what is it -- for finding out what exceptions may be thrown by a particular statement?
e.g., given the following code:
String substr = SelectedFileName.Substring(DATE_BEGIN_POS, DATE_LENGTH);
return DateTime.Parse(substr);
...how would I know what exception[s] might be thrown by the second line? You would think one could highlight the line, and select something from the context menu to supply this/these...
