aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/TextFormat.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2008-08-14 20:33:33 +0100
committerJon Skeet <skeet@pobox.com>2008-08-14 20:33:33 +0100
commit621bb698e54a7e0d2fdf74ab1f380183461ce7fa (patch)
treef1750773eee92541401126c66c811a382b0b22a7 /csharp/ProtocolBuffers/TextFormat.cs
parenta7246897ab87bc52951cc208f3775c7dfc1d6e09 (diff)
downloadprotobuf-621bb698e54a7e0d2fdf74ab1f380183461ce7fa.tar.gz
protobuf-621bb698e54a7e0d2fdf74ab1f380183461ce7fa.tar.bz2
protobuf-621bb698e54a7e0d2fdf74ab1f380183461ce7fa.zip
Some work on AbstractBuilder, and complete implementation of UnknownField and UnknownFieldSet
Diffstat (limited to 'csharp/ProtocolBuffers/TextFormat.cs')
-rw-r--r--csharp/ProtocolBuffers/TextFormat.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/csharp/ProtocolBuffers/TextFormat.cs b/csharp/ProtocolBuffers/TextFormat.cs
index b574c56d..e789d0d7 100644
--- a/csharp/ProtocolBuffers/TextFormat.cs
+++ b/csharp/ProtocolBuffers/TextFormat.cs
@@ -7,5 +7,9 @@ namespace Google.ProtocolBuffers {
public static string PrintToString(IMessage message) {
throw new NotImplementedException();
}
+
+ internal static string PrintToString(UnknownFieldSet unknownFieldSet) {
+ throw new NotImplementedException();
+ }
}
}