Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
byte[] に 0 のみが含まれているかどうかを確認するにはどうすればよいですか? 配列にゼロしか含まれていない場合、配列をネットワーク経由で送信したくありません。
byte[] bytesToBeSend = e.GetAudioSamples; // Send test data to the remote device. Send(client, bytesToBeSend);
Sendリクエストの前にこのテストを挿入し、テストを使用しifます。
Send
if
bool hasAllZeroes = bytesToBeSend.All(singleByte => singleByte == 0); if (!hasAllZeroes) { Send(client, bytesToBeSend); }
LINQ が含まれていることを確認します。
using System.Linq;