|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
need help to convert to VBneed 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 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 > 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 -- Show quoteHide quoteDavid 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 "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 > > >
Other interesting topics
Loading UserControl using New Contructor
vs2005 debugging on ws2k3 server ..HtmlControls.HtmlInputFile.Saveas(filename) not overwriting Storing an array to a Session Virtual Directory How do I run a server side method from javascript?! Path conversion self-signed certificate for Windows XP MessageBox Enterprise Library for .Net Framework 2.0 |
|||||||||||||||||||||||