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

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