From 1c4f7c018533f57cc4070fdf3957418e7931e450 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Mon, 4 Oct 2021 22:42:04 +0200 Subject: [PATCH] Fix table formatting --- DotNet/C#/C#.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index b33b333..f5d59da 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -706,16 +706,16 @@ Both of these are designed primarily for code generation scenarios, although the ### Unary Operators -| Operator | Operation | -| --------- | --------------- | -| `+`x | identity | -| `-`x | negation | -| `!`x | logic negation | -| `~`x | binary negation | -| `++`x | pre-increment | -| `--`x | pre-decrement | -| x`++` | post-increment | -| x`--` | post decrement | +| Operator | Operation | +| --------- | ---------------- | +| `+`x | identity | +| `-`x | negation | +| `!`x | logic negation | +| `~`x | binary negation | +| `++`x | pre-increment | +| `--`x | pre-decrement | +| x`++` | post-increment | +| x`--` | post decrement | | `(type)`x | explicit casting | ### Mathematical Operators @@ -745,20 +745,20 @@ Both of these are designed primarily for code generation scenarios, although the ### Logical Operators | Operator | Operation | Name | -| -------- | ----------------------------------------------------- | ---------------- | ----------------------------------- | -| `~`x | bitwise NOT | -| x `&` y | bitwise AND | -| x `^` y | bitwise XOR | -| x ` | ` y | bitwise OR | -| x `&&` y | evaluate `y` only if `x` is `true` | -| x ` | | ` y | evaluate `y` only if `x` is `false` | +| -------- | ----------------------------------------------------- | ---------------- | +| `~`x | bitwise NOT | | +| x `&` y | bitwise AND | | +| x `^` y | bitwise XOR | | +| x `|` y | bitwise OR | | +| x `&&` y | evaluate `y` only if `x` is `true` | | +| x `||` y | evaluate `y` only if `x` is `false` | | | x `??` y | evaluates to `y` only if `x` is `null`, `x` otherwise | Null coalescing | | x`?.`y | stop if `x == null`, evaluate `x.y` otherwise | Null conditional | ### Assignment | Operator | Operation | -| --------- | ---------------------- | ----- | --- | +| --------- | ---------------------- | | x `+=` y | x = x + y | | x `-=` y | x = x - y | | x `*=` y | x = x \* y | @@ -767,7 +767,7 @@ Both of these are designed primarily for code generation scenarios, although the | x `<<=` y | x = x << y | | x `>>=` y | x = x >> y | | x `&=` y | x = x & y | -| x ` | =` y | x = x | y | +| x `|=` y | x = x | y | | x `^=` y | x = x ^ y | | x `??=` y | if (x == null) {x = y} |