摘要: // Unity中反射遍历命名空间的两种方法 // 1. foreach (Type currType in GetType().Assembly.GetTypes()) { Debug.Log(currType); Debug.Log(currType.Namespace); } // 2. As 阅读全文
posted @ 2021-11-16 15:58 Excel2016 阅读(216) 评论(0) 推荐(0)
摘要: #define DEBUG using System.Diagnostics; namespace Attribute { using System; class Program { static void Main(string[] args) { Console.WriteLine("Hello 阅读全文
posted @ 2021-11-16 15:50 Excel2016 阅读(136) 评论(0) 推荐(0)
摘要: using System; using System.Linq; using System.Collections.Generic; namespace Linq { class Program { static void Main(string[] args) { // BasicConcept( 阅读全文
posted @ 2021-11-16 15:47 Excel2016 阅读(119) 评论(0) 推荐(0)