[corlib] Avoid unnecessary ephemeron array resizes
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / FreeFormEditing / ConnectorMovedEventArgs.cs
1 //------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //------------------------------------------------------------
4
5 namespace System.Activities.Presentation.FreeFormEditing
6 {
7     using System;
8     using System.Collections.Generic;
9     using System.Windows;
10
11     class ConnectorMovedEventArgs : EventArgs
12     {
13         List<Point> newConnectorLocation;
14
15         public ConnectorMovedEventArgs(List<Point> newConnectorLocation)
16         {
17             this.newConnectorLocation = newConnectorLocation;
18         }
19
20         public List<Point> NewConnectorLocation
21         {
22             get
23             {
24                 return this.newConnectorLocation;
25             }
26         }
27     }
28
29 }