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.
21 lines
506 B
21 lines
506 B
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);
|
|
}
|
|
|
|
}
|
|
}
|
|
|