You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
506 B
22 lines
506 B
2 months ago
|
using System.IO;
|
||
|
|
||
|
namespace ProtoCSStruct
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Extension methods on <see cref="IMessage"/> and <see cref="IMessage{T}"/>.
|
||
|
/// </summary>
|
||
|
public static class MessageExtensions
|
||
|
{
|
||
|
public static CodedInputStream GetInputStream(byte[] data)
|
||
|
{
|
||
|
return new CodedInputStream(data);
|
||
|
}
|
||
|
|
||
|
public static CodedOutputStream GetOutPutSteam(byte[] data)
|
||
|
{
|
||
|
return new CodedOutputStream(data);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|