easyboot

Results 7 comments of easyboot

I have the same problem. I use Net core 3.1, I use 1.2.5 is normal, when I upgrade to 1.2.6 is not displayed.

public class TCPCamera { private TcpClient client; private bool TaskIsRunning = true; static TCPCamera instance; public Action ReceiveTCP; public Action TCPConnectStatus; public bool IsConnect = false; public static TCPCamera GetInstance()...

[ 一个封锁操作被对 WSACancelBlockingCall 的调用中断。 HResult: -2147467259]

看样子是要安装.net 5 ,能升级到最新的版本吗

![image](https://github.com/dotnet-campus/dotnetcampus.DotNETBuildSDK/assets/26960023/79d2c8d0-87b2-4903-a6e0-9289985ee8ee) 我升级到最新版本了,但是还是提示需要,net 5

计划什么时候可以解决这个问题呢

通过下面的代码即可实现,很简单 public string ReadString(string deviceName,ushort Length) { Result result1 = new(); if (client.Connected) { result1 = client.Read(deviceName, Length); } //byte[] result2 = new byte[Length]; //result2 result1.Value = result1.Value.TakeWhile((v, index) =>...