using System.Collections;
namespace Core.GIS.NetTopologySuite.Utilities
{
///
/// Executes a transformation function on each element of a collection
/// and returns the results in a new List.
///
public class CollectionUtil
{
///
///
///
///
///
///
public delegate T FunctionDelegate(T obj);
///
/// Executes a function on each item in a
/// and returns the results in a new .
///
///
///
///
public static IList Transform(ICollection coll, FunctionDelegate