diff --git a/csharp/src/Google.Protobuf/Collections/RepeatedField.cs b/csharp/src/Google.Protobuf/Collections/RepeatedField.cs
index 7bb56448..9504d7ef 100644
--- a/csharp/src/Google.Protobuf/Collections/RepeatedField.cs
+++ b/csharp/src/Google.Protobuf/Collections/RepeatedField.cs
@@ -47,6 +47,9 @@ namespace Google.Protobuf.Collections
///
/// The element type of the repeated field.
public sealed class RepeatedField : IList, IList, IDeepCloneable>, IEquatable>
+#if !DOTNET35
+ , IReadOnlyList
+#endif
{
private static readonly T[] EmptyArray = new T[0];
private const int MinArraySize = 8;