I need to override the ToString behavior in C# to make it human readable.

E.g. I defined a message type to represent DateTime in C#, and then write a 
partial class to make it be able to convert from/to DateTime.

> message ProtoDateTime
>
> {
>
>      sfixed64 BinaryData = 1;
>
> }
>

However, the default ToString() doesn't generate human readable contents.

Currently the default implantation is (codegen code):

public override string ToString() {

return pb::JsonFormatter.Default.Format(this);

}
Which will generate something like this, which is not readable.
{ "dateTime": { "binaryData": "5247507155853679530" } }

Is there a way to override this behavior?
If not, is there a plan to support this? Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.

Reply via email to