Search
Submit a request
Sign in
How can we help you today?
Categories
Submit a request
Submit a request
Sign in
Support
Community
.Net Reflector 6.x and .NET Reflector 6.x Pro
Disassembler problem : ByRef params in VB are passed with()
New post
All ByRef parameters are passed with (). This disable the "ByRef" functionnality.
Ex :
Private Sub DefineIt(ByRef param1 As Integer)
disassembled as : DefineIt((myint))
instead of : DefineIt(myint)
syl
October 01, 2008 06:16
-
0
+
Comments
1 comment
Sort by
Date
Votes
I believe the problem is due to C# requiring ref in the cases where VB.NET requires nothing and VB.NET requiring () when a byval override is wanted.
--
Regards,
Mark Hurd. B.Sc.(Ma.)(Hons.)
Markhurd
May 23, 2009 02:51
-
0
+
Add comment
Please
sign in
to leave a comment.
Ex :
Private Sub DefineIt(ByRef param1 As Integer)
disassembled as : DefineIt((myint))
instead of : DefineIt(myint)