Esempio n. 1
0
    public override bool Equals(object other)
    {
        if (!(other is ViReceiveDataUInt8))
        {
            return(false);
        }
        ViReceiveDataUInt8 data = (ViReceiveDataUInt8)other;

        return(_value.Equals(data.Value));
    }
Esempio n. 2
0
 public static void Append(this ViOStream OS, ViReceiveDataUInt8 value)
 {
     OS.Append(value);
 }