aboutsummaryrefslogtreecommitdiff
path: root/cs-dotnet/src/gatsnull.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs-dotnet/src/gatsnull.cs')
-rw-r--r--cs-dotnet/src/gatsnull.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/cs-dotnet/src/gatsnull.cs b/cs-dotnet/src/gatsnull.cs
new file mode 100644
index 0000000..353a30f
--- /dev/null
+++ b/cs-dotnet/src/gatsnull.cs
@@ -0,0 +1,26 @@
1using System.IO;
2
3namespace Com.Xagasoft.Gats
4{
5 public class GatsNull : GatsObject
6 {
7 public GatsNull()
8 {
9 }
10
11 public override string ToString()
12 {
13 return "(null)";
14 }
15
16 public override void Read( Stream s, char type )
17 {
18 }
19
20 public override void Write( Stream s )
21 {
22 s.WriteByte( (int)'n' );
23 }
24 }
25}
26