kingBook

导航

2019年2月1日 #

保存xml报错 'UTF_8' is not a supported encoding name

摘要: ArgumentException: 'UTF_8' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.Reg 阅读全文

posted @ 2019-02-01 16:04 kingBook 阅读(681) 评论(0) 推荐(0) 编辑

C# 获取当前方法的名称空间、类名和方法名称

摘要: ```C# var className=System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name; ``` ```C# public string GetMethodInfo() { string str = ""; //取得当前方法命名空间 str += "命名空间名:" + Sys... 阅读全文

posted @ 2019-02-01 13:56 kingBook 阅读(6973) 评论(1) 推荐(2) 编辑