diff options
author | Guntbert Reiter <guntbert@gmx.at> | 2015-10-04 16:44:24 +0200 |
---|---|---|
committer | Guntbert Reiter <guntbert@gmx.at> | 2015-10-04 16:44:24 +0200 |
commit | f1a90a4e636616ce91a271504eee3f374bfd7094 (patch) | |
tree | 1e5f42d84fe8b08d2020f5153abbf8cf483bbe9a | |
parent | 9b46fe7e57bcf63785b67cdaffc49ff0d47d7476 (diff) |
Put demonstrative condition into ternary expression
It should be made clear that the part before the ternary operator is
indeed a condition, most often created as some comparison expression.
-rw-r--r-- | csharp.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 479b7f01..222ba0d2 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -236,7 +236,8 @@ on a new line! ""Wow!"", the masses cried"; // Ternary operators // A simple if/else can be written as follows // <condition> ? <true> : <false> - string isTrue = (true) ? "True" : "False"; + int toCompare = 17; + string isTrue = toCompare == 17 ? "True" : "False"; // While loop int fooWhile = 0; |