aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf/Collections/RepeatedField.cs
Commit message (Collapse)AuthorAgeFilesLines
* Support ToString in RepeatedField and MapField.Jon Skeet2015-10-011-0/+16
| | | | | | This changes how we approach JSON formatting in general - instead of looking at the field a value came from, we just look at the type of the value. It's possible this *could* be slightly inefficient, but if we start caring about JSON performance deeply, we'll probably want to rewrite all of this anyway. It's definitely simpler this way. When we support dynamic messages, we'll need to modify JsonFormatter to handle enum values, as they won't come be "real" .NET enums at that point. It shouldn't be hard to do though.
* Tidying up - fix a bunch of TODOs and remove outdated ones.Jon Skeet2015-08-081-4/+2
|
* Document everything, and turn on errors if we fail to document anything in ↵Jon Skeet2015-08-041-2/+109
| | | | the future.
* More freezing tidy-up; generated code in next commit.Jon Skeet2015-07-301-2/+1
|
* Minor bits of left-over frozenness.Jon Skeet2015-07-301-1/+0
|
* remove the freeze APIJan Tattermusch2015-07-291-26/+3
|
* First attempt at using profile 259 for Google.Protobuf.Jon Skeet2015-07-271-4/+6
| | | | | | | | This requires .NET 4.5, and there are a few compatibility changes required around reflection. Creating a PR from this to see how our CI systems handle it. Will want to add more documentation, validation and probably tests before merging. This is in aid of issue #590.
* First pass at the big rename from ProtocolBuffers to Google.Protobuf.Jon Skeet2015-07-171-0/+470
We'll see what I've missed when CI fails...