Automatic EWIs for non-supported members
Version 3.0 of the VBUC generates EWIs for members that don’t have an equivalent in .NET but only if there is an explicit rule for the particular member.
Version 4.0 will automatically generate EWIs for any member that doesn’t have an equivalent in .NET, not just those with conversion rules defined in the VBUC.
This information will be very useful to help determine the manual work required to migrate an application.
VB6 Code
Dim err As ADODB.Errors
Dim i As Integer
i = err.Count
err.Clear
.NET 3.0 Code
SqlErrorCollection err = null;
int i = err.Count;
err.Clear();
.NET 4.0
SqlErrorCollection err = null;
int i = err.Count;
//UPGRADE_ISSUE: (2064) ADODB.Errors method err.Clear was not upgraded. err.Clear();