Files
Proftaak-RH-B4/Server/SaveData.cs
fabjuuuh cf9341a93e SaveData
2020-09-25 13:43:00 +02:00

23 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace Server
{
class SaveData
{
public SaveData()
{
}
public void WriteData(string data)
{
using (StreamWriter sw = File.AppendText(Directory.GetCurrentDirectory() + "/data.txt"))
{
sw.WriteLine(data);
}
}
}
}