VB.NET:如何写If Not表达式?

Bru*_*uno 2 vb.net

这在VB.NET中是可以的:If(hash.add(Numbers[index])) 但是如何在VB.NET中编写以下内容:If(!hash.add(Numbers[index]))

Chr*_*aas 11

If(NOT hash.add(Numbers[index]))
Run Code Online (Sandbox Code Playgroud)