我想忽略所有来自串口的消息,除了唯一。我将每条消息添加到hashSet,当新消息到达时,我检查此消息不包含在hashSet中,如果此消息不包含我想打印他,那么我的程序认为每个消息到达都是唯一的,我不明白为什么我的比较代码不起作用,也许有人可以帮助我。这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO.Ports;
namespace mySniffer
{
class Program
{
static void Main(string[] args)
{
HashSet<String> messages = new HashSet<String>();
SerialPort comPort = new SerialPort();
comPort.BaudRate = 115200;
comPort.PortName = "COM4";
comPort.Open();
while (true)
{
string rx = comPort.ReadLine(); //reading com port
messages.Add(rx); // Add new incoming message to hashSet
if (!messages.Contains(rx))
{
Console.WriteLine(rx); // write incoming message
}
else {
Console.WriteLine(messages.Count); // check how many messages in hashSet
}
}
}
}
}
答案 0 :(得分:0)
问题在于代码逻辑,messages.Add(rx);
应该在if
块中移动。