# File lib/marc/controlfield.rb, line 47
    def ==(other)
      if @tag != other.tag
        return false 
      elsif @value != other.value
        return false
      end
      return true
    end