7 lines
143 B
C#
7 lines
143 B
C#
namespace ProtoBuf;
|
|
|
|
public interface IProtoInput<TInput>
|
|
{
|
|
T Deserialize<T>(TInput source, T value = default(T), object userState = null);
|
|
}
|