covnerting C# declaration to VB

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi, im trying to figure out how to convert this

[SecurityPermission(SecurityAction.LinkDemand, UnmanagedCode = true)]
private SafeFindHandle() : base(true) { }

to VB....the : base(true) { } is messing it up.....any help would be great
 
never midn, i got it

<SecurityPermission(SecurityAction.LinkDemand, UnManagedCode:=True)> _
Private Sub New()

MyBase.New(True)

End Sub
 
Back
Top