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

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