예제 #1
0
 public override int CompareTo(AcPlaceholderNew o)
 {
     return(Enabled == o.Enabled ?
            AlphanumComparatorFast.Compare(Id, o.Id) : Enabled ? -1 : 1);
 }
예제 #2
0
 public WrappedValueChangedEventArgs([NotNull] AcPlaceholderNew oldValue, [NotNull] AcPlaceholderNew newValue)
 {
     OldValue = oldValue;
     NewValue = newValue;
 }
 protected bool FilterTest(AcPlaceholderNew o)
 {
     return(o is T t && ListFilter.Test(t));
 }