using System.IO;
public static string Read()
{
try
{
if (File.Exists(Path.GetTempPath() + "message.nullcode"))
{
string read = File.ReadAllText(Path.GetTempPath() + "message.nullcode");
return read;
}
}
catch (Exception)
{
}
return null;
}
public static void Write(string text)
{
try
{
File.WriteAllText(Path.GetTempPath() + "message.nullcode", text);
}
catch (Exception)
{
}
}