[VB.NET]如何将vb.NET转换为Asp.NET

来源:互联网 发布:php网页源代码下载 编辑:程序博客网 时间:2024/04/29 13:45
VB.NET源码-156个实用实例哦……如何将vb.NET转换为Asp.NET
我不知道如何将vb.NET转换为Asp.NET,请问哪为高手可以?
__________________________________________________________________________
ASP.NET是 Active Server Page, 开发语言是VB.NET或者C#.NET。
这两者就不用转换了。
__________________________________________________________________________
不用换吧,你是不是想换成C#的
__________________________________________________________________________
就是把VB.NET转换为C#语言的啊
__________________________________________________________________________
就是将如下的转换为C#语言的,应该有一种转换工具的.我找不到,希望大家帮帮忙
Option Strict On
Option Explicit On

Imports System

_
Public Class WebChartItemCollection : Inherits System.Collections.CollectionBase

Private mOwner As WebChart

Public Sub New()
MyBase.New()
End Sub

Public Sub New(ByVal Owner As WebChart)
MyBase.New()
mOwner = Owner
End Sub

Private Property Owner() As WebChart
Get
Return CType(mOwner, WebChart)
End Get
Set(ByVal Value As WebChart)
mOwner = Value
End Set
End Property

Default Public ReadOnly Property Item(ByVal index As Int32) As WebChartItem
Get
Return CType(List.Item(index), WebChartItem)
End Get
End Property

Public Function Add(ByVal Item As WebChartItem) As Integer
Return List.Add(Item)
End Function

End Class
__________________________________________________________________________
http://www.developerfusion.co.uk/utilities/convertcsharptovb.aspx
__________________________________________________________________________
大哥啊,怎么是外语啊,我看不懂的啊
__________________________________________________________________________
原创粉丝点击