summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorolwaro <hoarau.olivier@gmail.com>2014-02-16 14:24:33 +0100
committerolwaro <hoarau.olivier@gmail.com>2014-02-16 14:28:15 +0100
commit00338a1a61040b70ec3e068f69ccfad31aa1934d (patch)
treedb878c8571d525ed6d80bbb07aa5b90c1eb4b0f1
parentedc8c4ff2776755549fab8f7fe2bc8777aa4620d (diff)
Fix some misleading comments
-rw-r--r--csharp.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index dad0c26b..3a870b7a 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -105,7 +105,7 @@ namespace Learning
Console.WriteLine(fooString);
// You can access each character of the string with an indexer:
- char charFromString = fooString[1]; // 'y'
+ char charFromString = fooString[1]; // => 'e'
// Strings are immutable: you can't do fooString[1] = 'X';
// Compare strings with current culture, ignoring case
@@ -173,7 +173,7 @@ on a new line! ""Wow!"", the masses cried";
int i1 = 1, i2 = 2; // Shorthand for multiple declarations
// Arithmetic is straightforward
- Console.WriteLine(i1 + i2 - i1 * 3 / 7); //
+ Console.WriteLine(i1 + i2 - i1 * 3 / 7); // => 3
// Modulo
Console.WriteLine("11%3 = " + (11 % 3)); // => 2
@@ -241,7 +241,7 @@ on a new line! ""Wow!"", the masses cried";
int fooDoWhile = 0;
do
{
- //Iterated 99 times, fooDoWhile 0->99
+ //Iterated 100 times, fooDoWhile 0->99
fooDoWhile++;
} while (fooDoWhile < 100);
@@ -576,7 +576,7 @@ on a new line! ""Wow!"", the masses cried";
AIST,
BMC,
Electra = 42, //you can explicitly set a value to a name
- Gitane
+ Gitane // 43
}
// We defined this type inside a Bicycle class, so it is a nested type
// Code outside of this class should reference this type as Bicycle.Brand