aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/AddressBook/Addressbook.cs
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanup.Jon Skeet2015-06-191-2/+2
| | | | | | | | - 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
* Use the fact that we know the tag size and bytes at codegen time to optimize.Jon Skeet2015-06-171-12/+19
|
* Regenerate proto filesJon Skeet2015-06-121-22/+30
|
* Update the AddressBook tutorial to reflect the mutable design.Jon Skeet2015-06-121-975/+250
|
* Change the C# enum generator inherit from primitive generatorJie Luo2015-05-291-1/+1
|
* Update C# solution and AddressBook project.Jon Skeet2015-04-291-0/+1158
Move to a single solution file containing all of the C# projects, but no other solution folders - it's easier to edit those files outside VS than keep adding and removing them from the project. The AddressBook protos have been regenerated (with a change to the example proto which I haven't included in this change - I'll wait for us to decide exactly what we're doing with namespaces before changing protos outside the csharp directory. Note that now we've got Addressbook.cs which contains AddressBook and Addressbook classes. It's bad enough that we've got a class called AddressBook within a namespace of AddressBook (hard to get away from) but having things vary just by case is nasty. This is more evidence that an option for renaming the file and descriptor class would be welcome. (A single option can probably handle both.)