VB.NET相当于C#Mask.NullString(str).Length

时间:2012-04-18 02:39:33

标签: c# asp.net .net vb.net

我遇到了一个我想要使用的库中的代码,这是我以前从未见过的(可能是因为我没有使用c#)并且找不到任何文档。它在VB.NET中不起作用,我甚至不确定它做了什么,所以我可以用不同的方式去做。表达式为Mask.NullString(str).Length。有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:2)

found on the webMask.NullString实现如下:

public static string NullString(string actual) {
    return actual == null ? string.Empty : actual;
}

我不是VB的专家,但我认为它转化为:

if(str, String.Empty).Length