c# - How do I pass address of UInt32 to UIntPtr in VB.NET? -


i have below code written in c#. want implement same in vb.net.

can please help, not able find way pass address of uint32 in vb.net

uint32 rawenclen= 0;  [dllimport("liccryptdll.dll", entrypoint = "decryptfileep", exactspelling = false, callingconvention = callingconvention.cdecl)] static extern unsafe bool decryptfileep(char[] blofile, byte[] rawenccert, uint32* rawenclen);  if (decryptfileep(blofile, rawenccert, &rawenclen))  { console.writeline("data decrypted") } 

i want similar this: enter link description here


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -