1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-23 14:55:08 +02:00

corrections for C# doc

This commit is contained in:
Melvyn
2013-09-21 15:33:11 -04:00
parent dbfaa5ba52
commit 41cf74fa53

View File

@@ -218,7 +218,7 @@ namespace Learning
// Others data structures to check out: // Others data structures to check out:
// //
// Stack/Queue // Stack/Queue
// Dictionary // Dictionary (an implementation of a hash map)
// Read-only Collections // Read-only Collections
// Tuple (.Net 4+) // Tuple (.Net 4+)
@@ -252,7 +252,6 @@ namespace Learning
~ Unary bitwise complement ~ Unary bitwise complement
<< Signed left shift << Signed left shift
>> Signed right shift >> Signed right shift
>>> Unsigned right shift
& Bitwise AND & Bitwise AND
^ Bitwise exclusive OR ^ Bitwise exclusive OR
| Bitwise inclusive OR | Bitwise inclusive OR