Parsing multidimensional function return types.
Status: Beta
Brought to you by:
jamesnies
Input (pre-NArrange):
Private Shared Function getProcessedFiles(ByRef rfs As List(Of ReportFile)) As String(,)
Output (post-NArrange):
Private Shared Function getProcessedFiles(ByRef rfs As List(Of ReportFile)) As String(
,)
Compilation then fails because of a newline being inserted immediately after the open parametheses and before the comma.