我有以下VB.NET功能,例如:
Public Function MyFunction (Of TData) (ByVal InParam As Integer) As TData End Sub
在一个函数中,如何确定TData是否为NULL类型?
一种方法是:
原文链接:https://www.f2er.com/vb/256066.htmlIf Nullable.GetUnderlyingType(GetType(TData)) <> Nothing
…至少,C#是:
if (Nullable.GetUnderlyingType(typeof(TData)) != null)
这是假设您询问是否为可空值类型。如果您询问是否为可空值类型或类,则C#版本为:
if (default(TData) == null)
但我不知道一个简单的VB翻译是否会在那里工作,因为“没有”在VB中有所不同。