aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/TextFormat.cs
blob: 87c5e2112d0156ddf21a56135cc62089ff6cc278 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Text;

namespace Google.ProtocolBuffers {
  public class TextFormat {
    public static string PrintToString(IMessage message) {
      throw new NotImplementedException();
    }

    internal static string PrintToString(UnknownFieldSet unknownFieldSet) {
      throw new NotImplementedException();
    }

    internal static object ParseUInt64(string p) {
      throw new NotImplementedException();
    }

    internal static object ParseInt64(string p) {
      throw new NotImplementedException();
    }

    internal static object ParseUInt32(string p) {
      throw new NotImplementedException();
    }

    internal static object ParseInt32(string p) {
      throw new NotImplementedException();
    }

    internal static object UnescapeBytes(string p) {
      throw new NotImplementedException();
    }
  }
}