Home All Groups Group Topic Archive Search About

need help to convert to VB

Author
22 Dec 2005 6:00 PM
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

Author
22 Dec 2005 6:19 PM
R L Vandaveer
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
Are all your drivers up to date? click for free checkup

Author
22 Dec 2005 6:26 PM
Andy G
Converting tool:

http://www.kamalpatel.net/ConvertCSharp2VB.aspx


Show quoteHide quote
"Jon Paal" <Jon nospam Paal @ everywhere dot com> wrote in message
news:O0IxLGyBGHA.3156@TK2MSFTNGP12.phx.gbl...
> 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
>
Author
23 Dec 2005 3:21 PM
David Anton
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



Show quoteHide quote
"Jon Paal" wrote:

> 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
>
>
>

Bookmark and Share