修复bug和新增部分功能

This commit is contained in:
GG Z
2024-10-08 16:21:39 +08:00
parent 082b781808
commit b6647218be
44 changed files with 1709 additions and 1390 deletions

View File

@@ -38,7 +38,7 @@ public class IniHelper
public string IniReadValue(string section, string key)
{
var temp = new StringBuilder(255);
var i = GetPrivateProfileString(section, key, "", temp, 255, path);
GetPrivateProfileString(section, key, "", temp, 255, path);
return temp.ToString();
}