diff options
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsinteger.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsinteger.cs b/cs-dotnet/src/gatsinteger.cs index 268769b..5ef17d8 100644 --- a/cs-dotnet/src/gatsinteger.cs +++ b/cs-dotnet/src/gatsinteger.cs | |||
@@ -9,6 +9,18 @@ using System.IO; | |||
9 | 9 | ||
10 | namespace Com.Xagasoft.Gats | 10 | namespace Com.Xagasoft.Gats |
11 | { | 11 | { |
12 | /// <summary> | ||
13 | /// Encapsulates a single integer value. | ||
14 | /// </summary> | ||
15 | /// <remarks> | ||
16 | /// The GATS integer encoding is arbitrary precision, and only consumes as | ||
17 | /// many bytes as it needs to represent a given number. There is no such | ||
18 | /// thing as an unsigned GATS integer. | ||
19 | /// | ||
20 | /// Internally the GatsInteger stores it's value in a long. | ||
21 | /// | ||
22 | /// In encoding, the type specifier for a GATS integer is 'i'. | ||
23 | /// </remarks> | ||
12 | public class GatsInteger : GatsObject | 24 | public class GatsInteger : GatsObject |
13 | { | 25 | { |
14 | public long Value { get; set; } | 26 | public long Value { get; set; } |