public override bool Equals(object obj)
            {
                if (!(obj is GpibChannelDataType))
                {
                    return(false);
                }
                GpibChannelDataType other = (GpibChannelDataType)obj;

                return(this == other);
            }
 public GPIBGroupChannelData()
 {
     this.dataType = GpibChannelDataType.raw_string;
     this.enabled  = false;
 }