Skip to content

Commit f548030

Browse files
ReedCopseymairaw
authored andcommitted
Removed duplicated null conditional index access (dotnet#2121)
This operator was listed twice. I left the first copy (near member access) and removed the 2nd.
1 parent e00e069 commit f548030

File tree

1 file changed

+1
-3
lines changed
  • docs/csharp/language-reference/operators

1 file changed

+1
-3
lines changed

docs/csharp/language-reference/operators/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ C# provides many operators, which are symbols that specify which operations (mat
6161
[f(x)](../../../csharp/language-reference/operators/invocation-operator.md) – function invocation.
6262

6363
[a[x]](../../../csharp/language-reference/operators/index-operator.md) – aggregate object indexing.
64-
65-
[a?[x]](../../../csharp/language-reference/operators/null-conditional-operators.md) – null conditional indexing. Returns `null` if the left-hand operand is `null`.
66-
64+
6765
[x++](../../../csharp/language-reference/operators/increment-operator.md) – postfix increment. Returns the value of x and then updates the storage location with the value of x that is one greater (typically adds the integer 1).
6866

6967
[x--](../../../csharp/language-reference/operators/decrement-operator.md) – postfix decrement. Returns the value of x and then updates the storage location with the value of x that is one less (typically subtracts the integer 1).

0 commit comments

Comments
 (0)