123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Runtime.CompilerServices;
- namespace EasyMQ
- {
- /// <summary>
- /// 使用<see cref="Unsafe.CopyBlock(ref byte, ref byte, uint)"/>方法进行数据转换
- /// 因此在结构体中不支持字符串和不定长数据
- /// </summary>
- [AttributeUsage(AttributeTargets.Struct)]
- public sealed class UnmanagedMessageAttribute:Attribute
- {
- }
- }
|