我收到一条从外部设备发送到我的程序的消息,我需要检查字符串消息是什么。
我需要做什么?
我想要做的是:
string read_in_value;
void ReadInMessage(string message)
{
read_in_value = message;
if( read_in_value == /* the message value being sent in */ )
{
// DO SSTUFF
}
}
我通常知道这将是一个 put 的情况,if (read_in_value == message)
但我需要检查正在读入的实际消息。发送的值可能是我需要检查的两件事之一。