If I use Version 3.9.1 of the Google.Protobuf and access the Descriptor for 
my message I get an IndexOutOfRangeException - however if I switch back to 
3.8.0 it;s fine.

Example:

### File 1 "test.proto"
syntax = "proto3";

import "google/protobuf/wrappers.proto";
import "protos/myoption.proto";

message Test {
  string test_id = 1 [(myoption) = "test"];
}
### End File 1

### File 2 "myoption.proto"
syntax = "proto3";

import "google/protobuf/descriptor.proto";

extend google.protobuf.FieldOptions {
string myoption = 50782; 
}
### End File 2






-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/protobuf/d4742227-8e90-468a-8191-1880db1e746b%40googlegroups.com.

Reply via email to