[corlib] Avoid unnecessary ephemeron array resizes
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / OrderTokenPrecedence.cs
1 namespace System.Activities.Presentation {
2     using System;
3     using System.Collections.Generic;
4     using System.Text;
5
6     /// <summary>
7     /// Precedence specifies the precedence of order tokens.
8     /// </summary>
9     enum OrderTokenPrecedence {
10
11         /// <summary>
12         /// Indicates that this token comes before
13         /// </summary>
14         Before,
15
16         /// <summary>
17         /// Indicates that this token comes after
18         /// </summary>
19         After
20     }
21 }