oiegrjoergojeroigjoeirgjoer

This commit is contained in:
2024-12-13 14:33:15 +09:00
parent fc02fa11c3
commit cafabbdb38
4 changed files with 43 additions and 24 deletions

View File

@@ -22,6 +22,11 @@ public class Jobini
private readonly string filePath;
//어떻게 이름이 ini ini t
public Jobini(string filePath)
{
this.iniData = ReadSetting(filePath);
this.filePath = filePath;
}
/// <summary>
/// inijob클래스를 생성합니다. 생성전에 데이터를 전부 삭제합니다.
/// </summary>
@@ -36,6 +41,7 @@ public class Jobini
//File.Delete(filePath);
this.iniData = ReadSetting(filePath);
this.filePath = filePath;
//file file = new();
}
@@ -106,7 +112,7 @@ public class Jobini
return ivalue;
}
this.IniWrite(key, value);
return "0";
return value;
}
public int IniCount()