Note: this article only applies to conversions to VB.NET, because the VB6Variant type isn’t supported when converting to C#.
The VB Migration Partner’s support library offers the special VB6CollectionVariant type, which behaves like a regular Collection except that its Item (default) member returns a VB6Variant value instead of Object instance.
You can perform the substitution in two different ways. The first method is the canonical approach, based on the ChangeType pragma:
However, this approach might not suffice in certain cases, for example when an element of the collection is used with the Is or the TypeOf operator. In such cases, in fact, VB Migration Partner generates compilation errors:
If myCollection("key") Is Nothing Then
ElseIf TypeOf myCollection("key") Is Form Then
End If
You can avoid these compilation errors by replacing the ChangeType pragma with the following PreProcess pragma (which must be stored in a *.pragmas file):