protobuf/csharp/ProtocolBuffers/UnknownFieldSet.cs
Jon Skeet b802a94f45 Half way through CodedInputStream
committer: Jon Skeet <skeet@pobox.com>
2008-08-14 20:33:28 +01:00

21 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Google.ProtocolBuffers {
public class UnknownFieldSet {
public void WriteTo(CodedOutputStream output) {
throw new NotImplementedException();
}
public int SerializedSize { get { return 0; } }
public class Builder
{
internal void MergeFrom(CodedInputStream codedInputStream) {
throw new NotImplementedException();
}
}
}
}