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

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