コード例 #1
0
ファイル: INIClass.cs プロジェクト: a532367171/facenet_0613
		public static string IniReadValue(string INIPath, string Section, string Key)
		{
			StringBuilder stringBuilder = new StringBuilder(500);
			INIClass.GetPrivateProfileString(Section, Key, "", stringBuilder, 500, INIPath);
			return stringBuilder.ToString();
		}
コード例 #2
0
ファイル: INIClass.cs プロジェクト: a532367171/facenet_0613
		public static void IniWriteValue(string INIPath, string Section, string Key, string Value)
		{
			INIClass.WritePrivateProfileString(Section, Key, Value, INIPath);
		}