-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHelper.cs
37 lines (33 loc) · 1.06 KB
/
Helper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace DragonFrontDb
{
internal class Helper
{
internal static string GetResourceTextFile(string filename)
{
string result = string.Empty;
using (Stream stream = typeof(Card).GetTypeInfo().Assembly.GetManifestResourceStream("DragonFrontDb." + filename))
{
using (StreamReader sr = new StreamReader(stream))
{
result = sr.ReadToEnd();
}
}
return result;
}
internal static async Task<string> GetResourceTextFileAsync(string filename)
{
await using var stream = typeof(Card).GetTypeInfo().Assembly.GetManifestResourceStream("DragonFrontDb." + filename);
using var sr = new StreamReader(stream);
var result = await sr.ReadToEndAsync();
return result;
}
}
}