diff options
author | Melvyn <melvyn.laily@gmail.com> | 2013-09-21 15:33:11 -0400 |
---|---|---|
committer | Melvyn <melvyn.laily@gmail.com> | 2013-09-21 15:33:11 -0400 |
commit | 41cf74fa53b1d315e2909e1ea62f4874727b578a (patch) | |
tree | b119a62f6ef4d2a9dca2be41d154b85b42988003 /csharp.html.markdown | |
parent | dbfaa5ba52758cc826e710024f0be22404817e5c (diff) |
corrections for C# doc
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 2854a49b..7239ca52 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -218,7 +218,7 @@ namespace Learning // Others data structures to check out: // // Stack/Queue - // Dictionary + // Dictionary (an implementation of a hash map) // Read-only Collections // Tuple (.Net 4+) @@ -252,7 +252,6 @@ namespace Learning ~ Unary bitwise complement << Signed left shift >> Signed right shift - >>> Unsigned right shift & Bitwise AND ^ Bitwise exclusive OR | Bitwise inclusive OR |