TextFormat.cs 879 B

1234567891011121314151617181920212223242526272829303132333435
  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. internal static object ParseUInt64(string p) {
  13. throw new NotImplementedException();
  14. }
  15. internal static object ParseInt64(string p) {
  16. throw new NotImplementedException();
  17. }
  18. internal static object ParseUInt32(string p) {
  19. throw new NotImplementedException();
  20. }
  21. internal static object ParseInt32(string p) {
  22. throw new NotImplementedException();
  23. }
  24. internal static object UnescapeBytes(string p) {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. }