aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/TextFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/ProtocolBuffers/TextFormat.cs')
-rw-r--r--csharp/ProtocolBuffers/TextFormat.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/csharp/ProtocolBuffers/TextFormat.cs b/csharp/ProtocolBuffers/TextFormat.cs
index e789d0d7..87c5e211 100644
--- a/csharp/ProtocolBuffers/TextFormat.cs
+++ b/csharp/ProtocolBuffers/TextFormat.cs
@@ -11,5 +11,25 @@ namespace Google.ProtocolBuffers {
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();
+ }
}
}