diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-04 22:10:18 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-04 22:10:18 +0200 |
commit | 1d436fc63f32074e20941dcaac30a7fb5c5d0cb5 (patch) | |
tree | 29cfa9d0f1de495d82bf209215d5b707ad5b3b77 /tr-tr | |
parent | 38b9bf7eed7ae3b7f2cf1fc97f01a223f88fce90 (diff) | |
parent | b1984042c845a73333972715e88a3d7a2e8cfdd7 (diff) |
Merge pull request #1342 from guntbert/iss1333-other-languages
[csharp/de,fr,tr,cn] Put demonstrative condition into ternary expression
Diffstat (limited to 'tr-tr')
-rw-r--r-- | tr-tr/csharp-tr.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tr-tr/csharp-tr.html.markdown b/tr-tr/csharp-tr.html.markdown index a68026a5..91c7c269 100644 --- a/tr-tr/csharp-tr.html.markdown +++ b/tr-tr/csharp-tr.html.markdown @@ -234,7 +234,8 @@ on a new line! ""Wow!"", the masses cried"; // Üçlü operatörler // Basit bir if/else ifadesi şöyle yazılabilir // <koşul> ? <true> : <false> - string isTrue = (true) ? "True" : "False"; + int toCompare = 17; + string isTrue = toCompare == 17 ? "True" : "False"; // While döngüsü int fooWhile = 0; |