有時候難免要使用一些資源檔
步驟分為 新增 & 使用
新增
在方案總管的專案上右鍵 選屬性
再選資源
加入資源 我準備的是純文字的TXT檔
加好後 自動產生一個名為Resources的資料夾
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Resources_test_2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(Properties.Resources.GN25L96_A2_table2);
Console.ReadLine();
}
}
}
結果如下
結案
好像沒有用到 using System.Resources; 我也不知道為什麼