7 lines
139 B
C#
7 lines
139 B
C#
namespace ProtoBuf;
|
|
|
|
public interface IProtoOutput<TOutput>
|
|
{
|
|
void Serialize<T>(TOutput destination, T value, object userState = null);
|
|
}
|