gpt4 book ai didi

vb.net - 抽象类/方法,如何用C#-> VB.NET

转载 作者:行者123 更新时间:2023-12-04 04:49:40 25 4
gpt4 key购买 nike

我对VB更加熟悉,我所购买的书中有C#示例,但现在我陷入了困境。

如何在VB.NET中实现以下功能?

public abstract class ENTBaseDATA<T> where T : IENTBaseEntity

{
public abstract List<T> Select();
public abstract T Select(int id);

etc....This code already is converted :)

}

有关完整的代码,请参见第2章下载:

http://www.wrox.com/WileyCDA/WroxTitle/productCd-0470396865,descCd-DOWNLOAD.html

最佳答案

您可以尝试使用C# / VB.NET converter。输出:

Public MustInherit Class ENTBaseDATA(Of T As IENTBaseEntity)
    Public MustOverride Function [Select]() As List(Of T)
    Public MustOverride Function [Select](ByVal id As Integer) As T
    ' and then the other code '
End Class

关于vb.net - 抽象类/方法,如何用C#-> VB.NET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1153804/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com