You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The naming guidelines for Google Protobuf enums is to use the C++/Java standard
of all capitals:
enum MyEnum {
OPTION_ONE =1;
OPTION_TWO =2;
}
In .NET the naming standards are to use Pascal case (upper camel):
http://msdn.microsoft.com/en-us/library/4x252001(VS.71).aspx
Please include a ProtoGen setting that will convert enumerated values to the
.NET standard. Expected output would be:
enum MyEnum {
OptionOne,
OptionTwo
}
Original issue reported on code.google.com by [email protected] on 4 Jan 2013 at 6:40
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 4 Jan 2013 at 6:40The text was updated successfully, but these errors were encountered: