Index | Next 

Remarks starting with three apostrophes

Many developers like to emphasize comments by creating lines of asterisks, dashes, or apostrophes:
        '''''''''''''''''''''''
        ' Methods
        '''''''''''''''''''''''
The problem in converting this code is that any remark that starts with three apostrophes is considered as an XML comment under VB.NET, therefore this code causes a compilation warning under VB.NET.

VB Migration Partner recognizes the problem and replaces the third apostrophe with a space:
        '' '''''''''''''''''''''
        ' Methods
        '' '''''''''''''''''''''

 

Index | Next