04 2011 档案
摘要:The 'And' operator evaluate both side, where 'AndAlso' only evaluate the right side if the left side is true. An example:If mystring IsNot Nothing And mystring.Contains("Foo") Then ' bla blaEnd IfThis throws an exception if mystring = NothingIf mystring IsNot Nothing An
阅读全文