# blqw.CSComment
**Repository Path**: blqw/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**: 8
- **Forks**: 6
- **Created**: 2016-03-04
- **Last Updated**: 2024-01-25
## Categories & Tags
**Categories**: utils
**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();
}
```

### 更新说明
#### 2016.03.04
* v1.0