// -*- Mode: csharp; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- // // System.Collections.Generic.IEnumerable // // Author: // Martin Baulig (martin@ximian.com) // // (C) 2003 Novell, Inc. // #if GENERICS using System; using System.Runtime.InteropServices; namespace System.Collections.Generic { [CLSCompliant(false)] [ComVisible(false)] public interface IEnumerable { IEnumerator GetEnumerator (); } } #endif