using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; namespace Google.ProtocolBuffers.Collections { /// /// Utilities class for dealing with lists. /// static class Lists { static readonly ReadOnlyCollection empty = new ReadOnlyCollection(new T[0]); /// /// Returns an immutable empty list. /// internal static ReadOnlyCollection Empty { get { return empty; } } } }