hytos / DTI_PID / ID2PSN / Log.cs @ bded697f
이력 | 보기 | 이력해설 | 다운로드 (582 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
using System.IO; |
7 |
|
8 |
namespace ID2PSN |
9 |
{ |
10 |
public static class Log |
11 |
{ |
12 |
private static readonly string Path = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) + @"\ID2 PSN.log"; |
13 |
|
14 |
public static void Write(string text) |
15 |
{ |
16 |
using (StreamWriter sw = File.AppendText(Path)) |
17 |
{ |
18 |
sw.WriteLine(text); |
19 |
sw.Close(); |
20 |
sw.Dispose(); |
21 |
} |
22 |
} |
23 |
} |
24 |
} |