File: System\Windows\Media\GeometryCollection.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
//
//
// Description: Implementation of GeometryCollection
//
 
using System.Collections;
using System.Windows.Media.Animation;
 
namespace System.Windows.Media
{
    /// <summary>
    /// The class definition for GeometryCollection
    /// </summary>    
    public sealed partial class GeometryCollection : Animatable, IList, IList<Geometry>
    {
    }
}