diff options
author | Guntbert Reiter <guntbert@gmx.at> | 2015-10-04 16:44:24 +0200 |
---|---|---|
committer | G. Reiter <guntbert@gmx.at> | 2015-10-04 21:56:24 +0200 |
commit | b1984042c845a73333972715e88a3d7a2e8cfdd7 (patch) | |
tree | 29cfa9d0f1de495d82bf209215d5b707ad5b3b77 /zh-cn | |
parent | 38b9bf7eed7ae3b7f2cf1fc97f01a223f88fce90 (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.
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/csharp-cn.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zh-cn/csharp-cn.html.markdown b/zh-cn/csharp-cn.html.markdown index a3cda5b3..971c1be9 100644 --- a/zh-cn/csharp-cn.html.markdown +++ b/zh-cn/csharp-cn.html.markdown @@ -232,7 +232,8 @@ on a new line! ""Wow!"", the masses cried"; // 三元表达式 // 简单的 if/else 语句可以写成: // <条件> ? <真> : <假> - string isTrue = (true) ? "True" : "False"; + int toCompare = 17; + string isTrue = toCompare == 17 ? "True" : "False"; // While 循环 int fooWhile = 0; |