Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VB.NET: How to write If Not expression?

Tags:

vb.net

This is ok in VB.NET: If(hash.add(Numbers[index])) However how do you write the following in VB.NET: If(!hash.add(Numbers[index]))

like image 658
Bruno Avatar asked Mar 07 '26 12:03

Bruno


1 Answers

If(NOT hash.add(Numbers[index]))
like image 77
Chris Haas Avatar answered Mar 10 '26 02:03

Chris Haas