//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ // PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\ //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\ using System.Collections; namespace Ilog.Language.Util { /** * This provides the interface needed for listing elements of a * collection object. * * @version Last modified on Thu May 26 15:06:19 2005 by hak * @author Hassan Aït-Kaci * @copyright © 2002 ILOG, S.A. */ public interface Listable : IEnumerable { int Count { get; } } }