UnknownFieldSet.cs 299 B

12345678910111213
  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. }
  11. }