整理:重新追踪文件

This commit is contained in:
若汝棋茗
2024-11-17 20:53:15 +08:00
parent 3bc98edc6e
commit 2aab3cf78f
2060 changed files with 333080 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// 此代码版权除特别声明或在XREF结尾的命名空间的代码归作者本人若汝棋茗所有
// 源代码使用协议遵循本仓库的开源协议及附加协议若本仓库没有设置则按MIT开源协议授权
// CSDN博客https://blog.csdn.net/qq_40374647
// 哔哩哔哩视频https://space.bilibili.com/94253567
// Gitee源代码仓库https://gitee.com/RRQM_Home
// Github源代码仓库https://github.com/RRQM
// API首页http://rrqm_home.gitee.io/touchsocket/
// 交流QQ群234762506
// 感谢您的下载和使用
//------------------------------------------------------------------------------
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs;
using TouchSocket.Core;
namespace BenchmarkConsoleApp.Benchmark
{
[SimpleJob(RuntimeMoniker.Net461)]
[SimpleJob(RuntimeMoniker.Net60)]
[MemoryDiagnoser]
public class BenchmarkAdapter : BenchmarkBase
{
[Benchmark]
public void FixedHeaderPackageAdapter()
{
var adapter = new FixedHeaderPackageAdapter();
}
}
}