一部のデータを .txt ファイルに保存して、後で読み込んだり読み取ったりできるようにしていますが、一部の特殊文字がうまく機能しません。
ファイルにいくつかのシンボルを保存し、ロードすると想定どおりにロードされないため、文字列の「内部」に見えるスクリーンショットを撮りました。
文字を含む画像と文字列での表示方法:
WritePrivateProfileString()
ファイルの書き込みと読み取りに WinAPI コードを使用しています。GetPrivateProfileString()
public static void FileWriteValue(string File, string Section, string Key, string Value)
{
WritePrivateProfileString(Section, Key, Value, File);
}
public static string FileReadValue(string File, string Section, string Key)
{
StringBuilder temp = new StringBuilder(100000);
int i = GetPrivateProfileString(Section, Key, "", temp, 100000, File);
return temp.ToString();
}
書き込みと読み取りで更新。