/* * Copyright (C) 2007-2012 Xagasoft, All rights reserved. * * This file is part of the libgats library and is released under the * terms of the license contained in the file LICENSE. */ using System.IO; namespace Com.Xagasoft.Gats { public class GatsNull : GatsObject { public GatsNull() { } public override string ToString() { return "(null)"; } public override void Read( Stream s, char type ) { } public override void Write( Stream s ) { s.WriteByte( (int)'n' ); } } }