aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs
Commit message (Collapse)AuthorAgeFilesLines
* Compare floating point values bitwise in C#Jon Skeet2017-12-091-0/+43
| | | | | This is the manual code part of the Google.Protobuf library, and tests. Some tests will fail until codegen is changed and rerun.
* C#: Implement IReadOnlyDictionary<K,V> in MapField<K,V>Jean-Rémy Bancel2017-07-121-0/+16
|
* Fix CopyTo argument validationJon Skeet2017-02-061-0/+16
| | | | Fixes #2669.
* Prohibit null values in map fieldsJon Skeet2016-01-111-54/+2
| | | | | On deserialization, missing values for message types are replaced with a "default" message.
* Support ToString in RepeatedField and MapField.Jon Skeet2015-10-011-0/+14
| | | | | | 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.
* Implement ICollection.CopyTo (using Array) for MapField views.Jon Skeet2015-08-101-0/+14
|
* Implement Keys and Values as viewsJon Skeet2015-08-081-0/+71
|
* remove the freeze APIJan Tattermusch2015-07-291-56/+0
|
* First pass at the big rename from ProtocolBuffers to Google.Protobuf.Jon Skeet2015-07-171-0/+541
We'll see what I've missed when CI fails...