<PackageReference Include="Relativity.OutsideIn" Version="2022.6.1" />

RepeatedField<T>

public int Capacity { get; set; }

public int Count { get; }

public bool IsReadOnly { get; }

public T this[int index] { get; set; }

public RepeatedField()

public void Add(T item)

public void Add(IEnumerable<T> values)

public void AddEntriesFrom(CodedInputStream input, FieldCodec<T> codec)

public void AddEntriesFrom(ref ParseContext ctx, FieldCodec<T> codec)

public void AddRange(IEnumerable<T> values)

public int CalculateSize(FieldCodec<T> codec)

public void Clear()

public RepeatedField<T> Clone()

public bool Contains(T item)

public void CopyTo(T[] array, int arrayIndex)

public bool Equals(RepeatedField<T> other)

public int IndexOf(T item)

public void Insert(int index, T item)

public bool Remove(T item)

public void RemoveAt(int index)

public void WriteTo(CodedOutputStream output, FieldCodec<T> codec)

public void WriteTo(ref WriteContext ctx, FieldCodec<T> codec)