什么是VB.Net中的C#As关键字的等价物,如
var x = y as String; if (x == null) ...
这是
TryCast:
Dim x As String = TryCast(y,String) If x Is Nothing Then ...