class BinData::Base

def to_binary_s

Returns the string representation of this data object.
def to_binary_s
  io = BinData::IO.create_string_io
  write(io)
  io.rewind
  io.read
end