summaryrefslogtreecommitdiffhomepage
path: root/fr-fr/csharp-fr.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2015-10-04 22:10:18 +0200
committerven <vendethiel@hotmail.fr>2015-10-04 22:10:18 +0200
commit1d436fc63f32074e20941dcaac30a7fb5c5d0cb5 (patch)
tree29cfa9d0f1de495d82bf209215d5b707ad5b3b77 /fr-fr/csharp-fr.html.markdown
parent38b9bf7eed7ae3b7f2cf1fc97f01a223f88fce90 (diff)
parentb1984042c845a73333972715e88a3d7a2e8cfdd7 (diff)
Merge pull request #1342 from guntbert/iss1333-other-languages
[csharp/de,fr,tr,cn] Put demonstrative condition into ternary expression
Diffstat (limited to 'fr-fr/csharp-fr.html.markdown')
-rw-r--r--fr-fr/csharp-fr.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/fr-fr/csharp-fr.html.markdown b/fr-fr/csharp-fr.html.markdown
index e51eacc8..58b3f386 100644
--- a/fr-fr/csharp-fr.html.markdown
+++ b/fr-fr/csharp-fr.html.markdown
@@ -239,7 +239,8 @@ sur une nouvelle ligne! ""Wow!"", quel style";
// Opérateur ternaire
// Un simple if/else peut s'écrire :
// <condition> ? <valeur si true> : <valeur si false>
- string isTrue = (true) ? "True" : "False";
+ int toCompare = 17;
+ string isTrue = toCompare == 17 ? "True" : "False";
// Boucle while
int fooWhile = 0;