diff options
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsnull.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsnull.cs b/cs-dotnet/src/gatsnull.cs index 009676f..49ca243 100644 --- a/cs-dotnet/src/gatsnull.cs +++ b/cs-dotnet/src/gatsnull.cs | |||
@@ -9,6 +9,17 @@ using System.IO; | |||
9 | 9 | ||
10 | namespace Com.Xagasoft.Gats | 10 | namespace Com.Xagasoft.Gats |
11 | { | 11 | { |
12 | /// <summary> | ||
13 | /// Represents a NULL value. | ||
14 | /// </summary> | ||
15 | /// <remarks> | ||
16 | /// There are a couple of reasons for using a real, instantiated object to | ||
17 | /// represent NULL instead of just using null. Primarily, however, it is | ||
18 | /// important to know the difference between an intentionally encoded null | ||
19 | /// and an absence of any object at all. | ||
20 | /// | ||
21 | /// The GatsNull doesn't contain any fields. | ||
22 | /// </remarks> | ||
12 | public class GatsNull : GatsObject | 23 | public class GatsNull : GatsObject |
13 | { | 24 | { |
14 | public GatsNull() | 25 | public GatsNull() |