EnumDescriptor.cs 212 B

12345678
  1. 
  2. namespace Google.ProtocolBuffers.Descriptors {
  3. public class EnumDescriptor {
  4. internal EnumValueDescriptor FindValueByNumber(int rawValue) {
  5. throw new System.NotImplementedException();
  6. }
  7. }
  8. }