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

前端之家收集整理的这篇文章主要介绍了[VB.NET]如何将vb.NET转换为Asp.NET前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将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 __________________________________________________________________________ 大哥啊,怎么是外语啊,我看不懂的啊 __________________________________________________________________________ 原文链接:https://www.f2er.com/vb/263707.html

猜你在找的VB相关文章