Example #1
0
    public override bool Equals(object other)
    {
        if (!(other is ViReceiveDataDouble))
        {
            return(false);
        }
        ViReceiveDataDouble data = (ViReceiveDataDouble)other;

        return(_value.Equals(data.Value));
    }
Example #2
0
 public static void Append(this ViOStream OS, ViReceiveDataDouble value)
 {
     OS.Append(value);
 }