VB.NET的隐藏特性?

前端之家收集整理的这篇文章主要介绍了VB.NET的隐藏特性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经学到了相当多的浏览通过 Hidden Features
of C#
和惊讶,当我找不到的东西
类似于VB.NET。

那么什么是它的一些隐藏或较少已知的功能

Exception When子句在很大程度上未知。

考虑这个:

Public Sub Login(host as string,user as String,password as string,_
                            Optional bRetry as Boolean = False)
Try
   ssh.Connect(host,user,password)
Catch ex as TimeoutException When Not bRetry
   ''//Try again,but only once.
   Login(host,password,True)
Catch ex as TimeoutException
   ''//Log exception
End Try
End Sub
原文链接:https://www.f2er.com/vb/256670.html

猜你在找的VB相关文章