need help to convert to VB

  • Thread starter Thread starter Jon Paal
  • Start date Start date
J

Jon Paal

need some help converting this to VB,

==========================================
public class SecurityHttpModule : IHttpModule {

#region Properties
public bool IsReusable {
get { return true; }
}
#endregion

public SecurityHttpModule() { }
}
End Class 'SecurityHttpModule
 
Looks like you already have some VB in there. I am not sitting in front
of an IDE but it is basically this:

Public Class SecurityHttpModule Implements IHttpModule

#region " Properties "
Public Property IsReusable() As Boolean

End Sub

#endregion

Public Sub New()

End Sub

End Class
 
From Instant VB:

Public Class SecurityHttpModule : Implements IHttpModule

#Region "Properties"
Public ReadOnly Property IsReusable() As Boolean
Get
Return True
End Get
End Property
#End Region

Public Sub New()
End Sub
End Class

--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant C++: C# to C++ Converter
Instant J#: VB.NET to J# Converter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top