namespace System.Collections.Generic { #if NET40 public interface IReadOnlyCollection : IEnumerable { int Count { get; } } #endif #if NET20 || NET30 || NET35 || !NET_4_6 public interface IReadOnlyCollection : IEnumerable { int Count { get; } } #endif }