views:

92

answers:

2
+1  Q: 

C#.net to Vb.net

I was trying to convert some C# code to Vb.net but there was a variable with an asterisk, which apparently VB.net doesn't support. (pointer variables I think they were called, were it refers or something) How would I convert that into VB.net

+2  A: 

VB.NET to date does not have any support for pointers or what is generally termaned "unsafe" code in C#. The usual way to do interop with unmanaged code is to make use of the Marshal class and friends in the Base Class Library. This is slightly more cumbersome to use that simple pointers, and not exactly the same, but it's the only real alternative unless you want to write that bit of your code in C#.

Noldorin
Of course, if you want any help converting this code to VB.NET using `System.Runtime.InteropServices` and such, you'll need to post the actual code...
Noldorin
ok I'll just use C#. I was just wondering if I could save my self downloading Visual Studio.
Jonathan
@Jonathan: Yep, that's probably the easiest solution.
Noldorin
@Jonathan: if you know VB.NET and don't know C# then you might do better to use Marshal. I've used this in a VB app and it was pretty straightforward.
AAT
Well I have the code in C# so I only need to compile, which is easier than working out how to use Marshal.
Jonathan
+1  A: 

If the code really has pointers in it, you can't. C# can do unsafe code; VB .NET can't.

One option would be to isolate the code in its own C# project, while doing the rest of the projects in your solution in VB .NET.

Kyralessa