// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Collections.ObjectModel; namespace ICSharpCode.AvalonEdit.Utils { /// /// Provides immutable empty list instances. /// static class Empty { public static readonly T[] Array = new T[0]; //public static readonly ReadOnlyCollection ReadOnlyCollection = new ReadOnlyCollection(Array); } }