Posts by Matheus Henrique • 11 points
2 posts
-
0
votes1
answer39
viewsA: Transmission error socket c#
I decided to put a checker end of line, as follows... if (content.IndexOf("\n") > -1) { Pessoa pessoa = JsonConvert.DeserializeObject<Pessoa>(content); newLine("Imprimindo etiqueta de " +…
-
1
votes1
answer39
viewsQ: Transmission error socket c#
I have the following code: public void StartListening() { try { btEngine = new Engine(true); IPAddress ip = IPAddress.Parse(txtServer.Text); IPEndPoint localEndPoint = new IPEndPoint(ip, 5000);…