What is the purpose and effect of the true and false operators in C#? The official documentation on these is hopelessly non-explanatory.
|
1
|
|||||||||||
|
|
|
The true and false operators can be overloaded, to allow a class to represent its own state as true or false, for example:
And you will be able to use the operator in boolean expressions:
|
||
|
|
You would overload the
Note that if you overload Of course, there are also the |
||||||||||
|
|
|
The allow you to use a custom type as a part of logic operations; For example, as part of an if or while statement. |
||
|
|
|
|
They allow you to overload them using the operator overloading syntax so that a type you define can be interpreted as a boolean. |
||
|
|
|
|
See the referenced example in the article C# Language Specification -- Database boolean type Essentially these operators allow an instance of a type to be used in boolean conditional logic such as |
|||
|
|
