diff options
author | Melih Mucuk <melihmucuk@gmail.com> | 2014-12-31 12:01:40 +0200 |
---|---|---|
committer | Melih Mucuk <melihmucuk@gmail.com> | 2014-12-31 12:01:40 +0200 |
commit | 32174fe9ce787f9135bda27dd3d3fddc9b0225bd (patch) | |
tree | f7e39f74faafa33885fd5bd0f9f1c57ff0203202 | |
parent | 427875663c221ae11ff3b8a8a6e6d66e89b36ac2 (diff) |
types
-rw-r--r-- | tr-tr/csharp-tr.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tr-tr/csharp-tr.html.markdown b/tr-tr/csharp-tr.html.markdown index ecbc2b18..29c29145 100644 --- a/tr-tr/csharp-tr.html.markdown +++ b/tr-tr/csharp-tr.html.markdown @@ -81,8 +81,8 @@ namespace Learning // Long - 64-bit integer long fooLong = 100000L; // (-9,223,372,036,854,775,808 <= long <= 9,223,372,036,854,775,807) ulong fooUlong = 100000L; // (0 <= ulong <= 18,446,744,073,709,551,615) - // Numbers default to being int or uint depending on size. - // L is used to denote that this variable value is of type long or ulong + // Sayılar boyutlarına göre ön tanımlı olarak int ya da uint olabilir. + // L, bir değerin long ya da ulong tipinde olduğunu belirtmek için kullanılır. // Double - Double-precision 64-bit IEEE 754 Floating Point double fooDouble = 123.4; // Precision: 15-16 digits |