Update introduction.md (#2396)

Fixes #11677
This commit is contained in:
Andy De George 2019-04-09 13:42:40 -07:00 committed by Bill Wagner
parent b02f764087
commit a19fac74c0

View file

@ -280,7 +280,7 @@ The following table summarizes C#'s operators, listing the operator categories i
| Logical OR | <code>x &#124; y</code> | Integer bitwise OR, boolean logical OR |
| Conditional AND | `x && y` | Evaluates `y` only if `x` is `true` |
| Conditional OR | <code>x &#124;&#124; y</code> | Evaluates `y` only if `x` is `false` |
| Null coalescing | `X ?? y` | Evaluates to `y` if `x` is `null`, to `x` otherwise |
| Null coalescing | `x ?? y` | Evaluates to `y` if `x` is `null`, to `x` otherwise |
| Conditional | `x ? y : z` | Evaluates `y` if `x` is `true`, `z` if `x` is `false` |
| Assignment or anonymous function | `x = y` | Assignment |
| | `x op= y` | Compound assignment; supported operators are `*=` `/=` `%=` `+=` `-=` `<<=` `>>=` `&=` `^=` <code>&#124;=</code> |