UnknownFieldSet.cs 457 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Google.ProtocolBuffers {
  5. public class UnknownFieldSet {
  6. public void WriteTo(CodedOutputStream output) {
  7. throw new NotImplementedException();
  8. }
  9. public int SerializedSize { get { return 0; } }
  10. public class Builder
  11. {
  12. internal void MergeFrom(CodedInputStream codedInputStream) {
  13. throw new NotImplementedException();
  14. }
  15. }
  16. }
  17. }