Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

217
Views
Protobuf: repeated should emit set accessors

.Net

The protobuff compiler generates a class in which repeated fields are read-only.

How to make them { get; set; }?

Let's say I have this proto code:

syntax = "proto3";

option csharp_namespace = "gRPC";

service MyService{
    rpc Foo(Request) returns (Response);
}

message Response{
    repeated string value = 1;
}

message Request{
    string id = 1;
}

Protobuff compiler generates this:

public pbc::RepeatedField<string> Value {
      get { return value_; }
    }

How to make him generate something like this:

public pbc::RepeatedField<string> Value {
      get { return value_; }
      set {
        value_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
      }
    }
over 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!