DLL을 자원 파일에 넣고 반사를 이용하여 일반 함수를 호출합니다!

3993 단어 dll
public static string ListToJson<T>(T List)

        {

            



            System.Reflection.Assembly ass = System.Reflection.Assembly.Load(SCB.FDS.Client.AutoUpdate.Resource.Newtonsoft_Json);

            Type type = ass.GetType("Newtonsoft.Json.JsonConvert");

            MethodInfo method = GetMethodToString(type, "SerializeObject", 1);



            return method.Invoke(null, new object[] { List }).ToString();   

        }



        public static T JsonToList<T>(string List)

        {

            



            System.Reflection.Assembly ass = System.Reflection.Assembly.Load(SCB.FDS.Client.AutoUpdate.Resource.Newtonsoft_Json);



            Type type = ass.GetType("Newtonsoft.Json.JsonConvert");



            MethodInfo method = GetMethodToT(type, "DeserializeObject", 1).MakeGenericMethod(typeof(T));

            

            T t = (T)method.Invoke(null, new object[] { List });

            

            return t;

        }



        private static MethodInfo GetMethodToT(Type type, string methodName, int paramCount)

        {

            return type.GetMethods().FirstOrDefault(m => { return m.ReturnType != typeof(string) && m.ReturnType != typeof(object) && m.Name == methodName && m.GetParameters().Count() == paramCount; });

        }



        private static MethodInfo GetMethodToString(Type type, string methodName, int paramCount)

        {

            return type.GetMethods().FirstOrDefault(m => { return m.ReturnType == typeof(string) && m.Name == methodName && m.GetParameters().Count() == paramCount; });

        }

  

좋은 웹페이지 즐겨찾기