protobuf/csharp/ProtocolBuffers/TextFormat.cs

36 lines
879 B
C#

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();
}
}
}