Does VB.Net have true
and false
operators like C# does?
Until this morning, I was not aware that C# has true
and false
"operator"s.
I found them listed in a book, along with the normal operators (&
, ^
, |
, &&
, etc.).
At first I thought it was a misprint; I thought that true
and false
were only Boolean
values, not operators.
I found this MSDN page: true Operator (C# Reference) about C#'s true
operator, but was unable to find anything about VB's True
operator (if it even exists).