C# 提取所有字段值

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.IO;
namespace RefectionGetConst
{
   

    class Program
    {
        static void Main(string[] args)
        {

            Assembly asm=Assembly.LoadFile("D:XXX.dll");
            foreach (Type type in asm.GetTypes())
            {
                if (type.Name != "Program")
                {
                    GetTargetType(type);
                }
            }
        }

        private static void WriteIntoOneFile(string str, string from)
        {
            string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) ;
            DirectoryInfo di = new DirectoryInfo(path);

            if (!di.Exists)
            {
                di.Create();
            }
            using (StreamWriter sw = new StreamWriter(path + "//AllWord.CSV", true, Encoding.Default))
            {

                sw.WriteLine(str+","+from);

                sw.Close();
            }
        }
        private static void WriteWordOut(string str, string fileName)
        {
            string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "//Resourse";
            DirectoryInfo di = new DirectoryInfo(path);

            if (!di.Exists)
            {
                di.Create();
            }
            using (StreamWriter sw = new StreamWriter(path + "//" + fileName + ".CSV", true, Encoding.Default))
            {

                sw.WriteLine(str);

                sw.Close();
            }

        }
        public static void GetTargetType(Type type)
        {

            FieldInfo[] ps = type.GetFields();
            foreach (FieldInfo p in ps)
            {
                string name = p.Name;
                object value = p.GetValue(null);
               // WriteWordOut(value.ToString().Replace("/n", "//n").Replace(",","!@#"), type.Name);
                WriteIntoOneFile(value.ToString().Replace("/n", "//n").Replace(",", "!@#"), type.Name);
            }

        }


    }
}

 

最近做一個漢化項目,自己寫了段代碼來實現了獲取一個DLL所有字段值做成一個字典給翻譯整理。覺得還比較好用。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章