修复多个未使用字段和变量的编译器警告

This commit is contained in:
zqm
2025-10-29 16:52:16 +08:00
parent a0a4400456
commit 1fb1f6c836
2 changed files with 1 additions and 11 deletions

View File

@@ -130,14 +130,12 @@ namespace JoyD.Windows.CS.Toprie
// 私有字段
private string deviceIp;
private Socket socket;
private bool isConnected;
private static bool isSdkInitialized = false;
private static Dictionary<string, V8> deviceInstances = new Dictionary<string, V8>();
public V8(string ip)
{
deviceIp = ip;
isConnected = false;
}
~V8()