You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var text="";
for (int index = 0; index < recivedEventArgs.Buffer.Length; index++)
{
byte value = recivedEventArgs.Buffer.ToArray()[index];
text += (char)recivedEventArgs.Buffer.ToArray()[index];
}
Hi, I want to convert the data byte to string and display it. Any tutor?
The text was updated successfully, but these errors were encountered: