这段简单的C#程序如何转换成vb.net语法?

来源:百度知道 编辑:UC知道 时间:2024/06/17 05:01:03
using System;
using System.Web;

public class RequestUploadHandler : Telerik.Windows.RadUploadHandler
{
public override System.Collections.Generic.Dictionary<string, object> GetAssociatedData()
{
(...程序代码...)
}
}

Imports System
Imports System.Web
Imports System.Collections.Generic

Public Class RequestUploadHandler
Inherits Telerik.Windows.RadUploadHandler

Public Overrides Function GetAssociatedData() As Dictionary(Of String, Object)
Return Nothing
End Function

End Class

Imports System;
Imports System.Web;

public class RequestUploadHandler Inherits Telerik.Windows.RadUploadHandler
Public Overloads Overrides Function GetAssociatedData() as System.Collections.Generic.Dictionary<string, object>

(...程序代码...)
End Function
End Class