aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffers/MessageParser.cs
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright lines for all C# code.Jon Skeet2015-06-301-1/+33
| | | | | | Everything should now be consistent - the only difference between files is the year (aside from generated files). Fixes issue #531.
* Minor cleanup.Jon Skeet2015-06-191-2/+35
| | | | | | | | - Make some members internal - Remove a lot of FrameworkPortability that isn't required - Start adding documentation comments - Remove some more group-based members - Not passing in "the last tag read" into Read*Array, g
* Coded*Stream streamlining.Jon Skeet2015-06-121-1/+1
| | | | Remove ICodedInputStream and ICodedOutputStream, and rewrite CodedInputStream and CodedOutputStream to be specific to the binary format. If we want to support text-based formats, that can be a whole different serialization mechanism.
* First pass at the mutable API. Quite a bit more to do - in particular, it's ↵Jon Skeet2015-06-091-0/+57
pretty slow right now.