problem with ParameterModifier in .net 2
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hi everyone, I'm debugging some code that we just migrated from 1.1 to 2.0 net. I'm running into some .vb code that was working before. Dim oParamMod As New Reflection.ParameterModifier(2) oParamMod(0) = True oParamMod(1) = True Dim aParamMod() As Reflection.ParameterModifier = {oParamMod} After I "dim" the oParamMod, I can hover over it and I get the message: "In order to evaluate an indexed property, the property must be qualified and the arguments must be explicitly supplied by the user." Similar code is running fine in c# but no vb. Anyone else run into this issue? It's like vb doesn't like the ParameterModifier anymore. Thanks, Jessica