NoSugarNet/NoSugarNet.ClientCore.Standard2/Common/ProtoBufHelper.cs
2024-04-15 15:16:10 +08:00

22 lines
503 B
C#

using Google.Protobuf;
using System;
namespace NoSugarNet.ClientCoreNet.Standard2.Common
{
public static class ProtoBufHelper
{
public static byte[] Serizlize(IMessage msg)
{
return msg.ToByteArray();
}
public static T DeSerizlize<T>(byte[] bytes)
{
var msgType = typeof(T);
object msg = Activator.CreateInstance(msgType);
((IMessage)msg).MergeFrom(bytes);
return (T)msg;
}
}
}