summaryrefslogtreecommitdiffhomepage
path: root/tr-tr/csharp-tr.html.markdown
diff options
context:
space:
mode:
authorVojta Svoboda <vojtasvoboda.cz@gmail.com>2015-10-07 14:26:18 +0200
committerVojta Svoboda <vojtasvoboda.cz@gmail.com>2015-10-07 14:26:18 +0200
commitbff40e2f9816974abd29322f2a50455f51acd22e (patch)
tree01177dd231841fea5dea3aa6546fde8d6630f5d3 /tr-tr/csharp-tr.html.markdown
parent6dabd9568d2a99e7bbc079d0466588bf68a42283 (diff)
parent5c677e8071291520297ef3d5d8374c6d11285744 (diff)
Merge branch 'master' into translation/brainfuck-cs
Diffstat (limited to 'tr-tr/csharp-tr.html.markdown')
-rw-r--r--tr-tr/csharp-tr.html.markdown3
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;