diff options
author | Sean Corrales <scorrales@gmail.com> | 2015-10-05 09:50:44 -0500 |
---|---|---|
committer | Sean Corrales <scorrales@gmail.com> | 2015-10-05 09:50:44 -0500 |
commit | fe5157d36f4b508479edaa214e097f65e7ba26e1 (patch) | |
tree | e6a3f377ba4ed7735bbcf3c2908082b811168e9e /fr-fr/csharp-fr.html.markdown | |
parent | a743c831a07f5e846051b156152fe8e6ddcfb097 (diff) | |
parent | e57fb68756ec6f4242ad04c359f7796606b52a42 (diff) |
Merge pull request #1 from adambard/master
Merging changes from source branch
Diffstat (limited to 'fr-fr/csharp-fr.html.markdown')
-rw-r--r-- | fr-fr/csharp-fr.html.markdown | 3 |
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; |