# blqw.CSComment **Repository Path**: huangyong2022/blqw.CSComment ## Basic Information - **Project Name**: blqw.CSComment - **Description**: 获取注释文件中的内容 - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2017-12-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # blqw.CSComment 获取注释文件中的内容 ```csharp /// /// 这是一个测试注释 /// /// 测试 static void Main(string[] args) { var method = typeof(Program).GetMethod("Main", (System.Reflection.BindingFlags)(-1)); var comment = CSCommentReader.Create(method); Console.WriteLine("summary:" + comment.Summary); Console.WriteLine("param:"); foreach (var param in comment.Param) { Console.WriteLine($" {param.Key} , {param.Value}"); } Console.ReadLine(); Console.WriteLine(); } ``` ![输出](https://raw.githubusercontent.com/blqw/blqw.CSComment/master/demo.png) ### 更新说明 #### 2016.03.04 * v1.0