GAPVelocity.ai
The VB6 AI Migrator analyzes the private subroutines and functions of each source code file, identifies the ones which are not used and generates them commented out with the 7001 EWI preceding them. This improves the migration process by reducing the amount of manual work required to compile the application in .NET.
The target methods can removed from the upgraded source code if they will not be used in the future.
The code for these methods is migrated, but commented out. If it is necessary to keep this code, it can be un-commented and used with the rest of the application.
Private Sub DeadCode() MsgBox "DeadCode" End Sub
'UPGRADE_NOTE: (7001) The following declaration (DeadCode) seems to be dead code. 'Private Sub DeadCode() 'MessageBox.Show("DeadCode", My.Application.Info.Title) 'End Sub
//UPGRADE_NOTE: (7001) The following declaration (DeadCode) seems to be dead code. //private void DeadCode() //{ //MessageBox.Show("DeadCode", AssemblyHelper.GetTitle(System.Reflection.Assembly.GetExecutingAssembly())); //}