private MetaByte_B ReadUnsignedByte(XmlNode node)
        {
            var byteValue = new MetaByte_B();

            byteValue.Value = byte.Parse(node.Attributes["value"].Value);
            return(byteValue);
        }
 public void AssertByte(MetaByte_B expectedByte, MetaByte_B actualByte)
 {
     Assert.AreEqual(expectedByte.Value, actualByte.Value);
 }
 private void WriteUnsignedByteContent(XmlTextWriter writer, MetaByte_B byteValue)
 {
     writer.WriteAttributeString("value", byteValue.Value.ToString());
 }