An enum is a value type. Value types in .Net are generally stored in the stack. You typically use enums to represent named constants in your application. There are two types of enums: simple enums and ...
Describe the problem you are trying to solve. Currently, when protoc generates C# code from .proto files, it automatically converts field names (including enum field names) from snake_case (the ...