TextFormat.cs 374 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Google.ProtocolBuffers {
  5. public class TextFormat {
  6. public static string PrintToString(IMessage message) {
  7. throw new NotImplementedException();
  8. }
  9. internal static string PrintToString(UnknownFieldSet unknownFieldSet) {
  10. throw new NotImplementedException();
  11. }
  12. }
  13. }