-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUndoRedoList.cs
1301 lines (1264 loc) · 46.8 KB
/
UndoRedoList.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This source is under LGPL license. Sergei Arhipenko (c) 2006-2007. email: [email protected]. This notice may not be removed.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text;
using System.Diagnostics;
namespace DejaVu.Collections.Generic
{
public class UndoRedoList<T> : IUndoRedoMember, IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable, IChangedNotification
{
List<T> list;
#region IUndoRedoMember Members
void IUndoRedoMember.OnCommit(object change)
{
Debug.Assert(change != null);
((Change<List<T>>)change).NewState = list;
}
void IUndoRedoMember.OnUndo(object change)
{
Debug.Assert(change != null);
list = ((Change<List<T>>)change).OldState;
}
void IUndoRedoMember.OnRedo(object change)
{
Debug.Assert(change != null);
list = ((Change<List<T>>)change).NewState;
}
public object Owner
{
get
{
return UndoRedoMemberExtender.GetOwner(this);
}
set
{
UndoRedoMemberExtender.SetOwner(this, value);
}
}
public string Name
{
get
{
return UndoRedoMemberExtender.GetName(this);
}
set
{
UndoRedoMemberExtender.SetName(this, value);
}
}
/// <summary>
/// This event is fired if the list was changed during a command.
/// MemberChangedEventArgs.NewValue contains readonly version of new list.
/// MemberChangedEventArgs.OldValue contains readonly version of old list.
/// </summary>
public event EventHandler<MemberChangedEventArgs> Changed
{
add { UndoRedoMemberExtender.SubscribeChanges(this, value); }
remove { UndoRedoMemberExtender.UnsubscribeChanges(this, value); }
}
#endregion
void Enlist()
{
Enlist(true);
}
void Enlist(bool copyItems)
{
UndoRedoArea.AssertCommand();
Command command = UndoRedoArea.CurrentArea.CurrentCommand;
if (!command.IsEnlisted(this))
{
Change<List<T>> change = new Change<List<T>>();
change.OldState = list;
command[this] = change;
if (copyItems)
list = new List<T>(list);
else
list = new List<T>();
}
}
///<summary>
/// Initializes a new instance of the System.Collections.Generic.List<T> class
/// that is empty and has the default initial capacity.
/// </summary>
public UndoRedoList()
{
list = new List<T>();
}
//
///<summary>
// Initializes a new instance of the System.Collections.Generic.List<T> class
// that contains elements copied from the specified collection and has sufficient
// capacity to accommodate the number of elements copied.
//
// Parameters:
// collection:
// The collection whose elements are copied to the new list.
//
// Exceptions:
// System.ArgumentNullException:
// collection is null.
public UndoRedoList(IEnumerable<T> collection)
{
list = new List<T>(collection);
}
///<summary>
// Gets or sets the total number of elements the internal data structure can
// hold without resizing.
//
// Returns:
// The number of elements that the System.Collections.Generic.List<T> can contain
// before resizing is required.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// System.Collections.Generic.List<T>.Capacity is set to a value that is less
// than System.Collections.Generic.List<T>.Count.
public int Capacity
{
get { return list.Capacity; }
set { list.Capacity = value; }
}
//
///<summary>
// Gets the number of elements actually contained in the System.Collections.Generic.List<T>.
//
// Returns:
// The number of elements actually contained in the System.Collections.Generic.List<T>.
public int Count
{
get { return list.Count; }
}
///<summary>
// Gets or sets the element at the specified index.
//
// Parameters:
// index:
// The zero-based index of the element to get or set.
//
// Returns:
// The element at the specified index.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-index is equal to or greater than System.Collections.Generic.List<T>.Count.
public T this[int index]
{
get { return list[index]; }
set
{
Enlist();
list[index] = value;
}
}
///<summary>
// Adds an object to the end of the System.Collections.Generic.List<T>.
//
// Parameters:
// item:
// The object to be added to the end of the System.Collections.Generic.List<T>.
// The value can be null for reference types.
public void Add(T item)
{
Enlist();
list.Add(item);
}
//
///<summary>
// Adds the elements of the specified collection to the end of the System.Collections.Generic.List<T>.
//
// Parameters:
// collection:
// The collection whose elements should be added to the end of the System.Collections.Generic.List<T>.
// The collection itself cannot be null, but it can contain elements that are
// null, if type T is a reference type.
//
// Exceptions:
// System.ArgumentNullException:
// collection is null.
public void AddRange(IEnumerable<T> collection)
{
Enlist();
list.AddRange(collection);
}
//
///<summary>
// Returns a read-only System.Collections.Generic.IList<T> wrapper for the current
// collection.
//
// Returns:
// A System.Collections.Generic.ReadOnlyCollection`1 that acts as a read-only
// wrapper around the current System.Collections.Generic.List<T>.
public ReadOnlyCollection<T> AsReadOnly()
{
return list.AsReadOnly();
}
//
///<summary>
// Searches the entire sorted System.Collections.Generic.List<T> for an element
// using the default comparer and returns the zero-based index of the element.
//
// Parameters:
// item:
// The object to locate. The value can be null for reference types.
//
// Returns:
// The zero-based index of item in the sorted System.Collections.Generic.List<T>,
// if item is found; otherwise, a negative number that is the bitwise complement
// of the index of the next element that is larger than item or, if there is
// no larger element, the bitwise complement of System.Collections.Generic.List<T>.Count.
//
// Exceptions:
// System.InvalidOperationException:
// The default comparer System.Collections.Generic.Comparer<T>.Default cannot
// find an implementation of the System.IComparable<T> generic interface or
// the System.IComparable interface for type T.
public int BinarySearch(T item)
{
return list.BinarySearch(item);
}
//
///<summary>
// Searches the entire sorted System.Collections.Generic.List<T> for an element
// using the specified comparer and returns the zero-based index of the element.
//
// Parameters:
// item:
// The object to locate. The value can be null for reference types.
//
// comparer:
// The System.Collections.Generic.IComparer<T> implementation to use when comparing
// elements.-or-null to use the default comparer System.Collections.Generic.Comparer<T>.Default.
//
// Returns:
// The zero-based index of item in the sorted System.Collections.Generic.List<T>,
// if item is found; otherwise, a negative number that is the bitwise complement
// of the index of the next element that is larger than item or, if there is
// no larger element, the bitwise complement of System.Collections.Generic.List<T>.Count.
//
// Exceptions:
// System.InvalidOperationException:
// comparer is null, and the default comparer System.Collections.Generic.Comparer<T>.Default
// cannot find an implementation of the System.IComparable<T> generic interface
// or the System.IComparable interface for type T.
public int BinarySearch(T item, IComparer<T> comparer)
{
return list.BinarySearch(item, comparer);
}
//
///<summary>
// Searches a range of elements in the sorted System.Collections.Generic.List<T>
// for an element using the specified comparer and returns the zero-based index
// of the element.
//
// Parameters:
// count:
// The length of the range to search.
//
// item:
// The object to locate. The value can be null for reference types.
//
// index:
// The zero-based starting index of the range to search.
//
// comparer:
// The System.Collections.Generic.IComparer<T> implementation to use when comparing
// elements, or null to use the default comparer System.Collections.Generic.Comparer<T>.Default.
//
// Returns:
// The zero-based index of item in the sorted System.Collections.Generic.List<T>,
// if item is found; otherwise, a negative number that is the bitwise complement
// of the index of the next element that is larger than item or, if there is
// no larger element, the bitwise complement of System.Collections.Generic.List<T>.Count.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-count is less than 0.
//
// System.InvalidOperationException:
// comparer is null, and the default comparer System.Collections.Generic.Comparer<T>.Default
// cannot find an implementation of the System.IComparable<T> generic interface
// or the System.IComparable interface for type T.
//
// System.ArgumentException:
// index and count do not denote a valid range in the System.Collections.Generic.List<T>.
public int BinarySearch(int index, int count, T item, IComparer<T> comparer)
{
return list.BinarySearch(index, count, item, comparer);
}
//
///<summary>
// Removes all elements from the System.Collections.Generic.List<T>.
public void Clear()
{
UndoRedoArea.AssertCommand();
Command command = UndoRedoArea.CurrentArea.CurrentCommand;
if (!command.IsEnlisted(this))
{
Enlist(false);
}
else
list.Clear();
}
//
///<summary>
// Determines whether an element is in the System.Collections.Generic.List<T>.
//
// Parameters:
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// Returns:
// true if item is found in the System.Collections.Generic.List<T>; otherwise,
// false.
public bool Contains(T item)
{
return list.Contains(item);
}
//
///<summary>
// Converts the elements in the current System.Collections.Generic.List<T> to
// another type, and returns a list containing the converted elements.
//
// Parameters:
// converter:
// A System.Converter<TInput,TOutput> delegate that converts each element from
// one type to another type.
//
// Returns:
// A System.Collections.Generic.List<T> of the target type containing the converted
// elements from the current System.Collections.Generic.List<T>.
//
// Exceptions:
// System.ArgumentNullException:
// converter is null.
public List<TOutput> ConvertAll<TOutput>(Converter<T, TOutput> converter)
{
return list.ConvertAll<TOutput>(converter);
}
//
///<summary>
// Copies the entire System.Collections.Generic.List<T> to a compatible one-dimensional
// array, starting at the beginning of the target array.
//
// Parameters:
// array:
// The one-dimensional System.Array that is the destination of the elements
// copied from System.Collections.Generic.List<T>. The System.Array must have
// zero-based indexing.
//
// Exceptions:
// System.ArgumentException:
// The number of elements in the source System.Collections.Generic.List<T> is
// greater than the number of elements that the destination array can contain.
//
// System.ArgumentNullException:
// array is null.
public void CopyTo(T[] array)
{
list.CopyTo(array);
}
//
///<summary>
// Copies the entire System.Collections.Generic.List<T> to a compatible one-dimensional
// array, starting at the specified index of the target array.
//
// Parameters:
// array:
// The one-dimensional System.Array that is the destination of the elements
// copied from System.Collections.Generic.List<T>. The System.Array must have
// zero-based indexing.
//
// arrayIndex:
// The zero-based index in array at which copying begins.
//
// Exceptions:
// System.ArgumentException:
// arrayIndex is equal to or greater than the length of array.-or-The number
// of elements in the source System.Collections.Generic.List<T> is greater than
// the available space from arrayIndex to the end of the destination array.
//
// System.ArgumentOutOfRangeException:
// arrayIndex is less than 0.
//
// System.ArgumentNullException:
// array is null.
public void CopyTo(T[] array, int arrayIndex)
{
list.CopyTo(array, arrayIndex);
}
//
///<summary>
// Copies a range of elements from the System.Collections.Generic.List<T> to
// a compatible one-dimensional array, starting at the specified index of the
// target array.
//
// Parameters:
// array:
// The one-dimensional System.Array that is the destination of the elements
// copied from System.Collections.Generic.List<T>. The System.Array must have
// zero-based indexing.
//
// count:
// The number of elements to copy.
//
// arrayIndex:
// The zero-based index in array at which copying begins.
//
// index:
// The zero-based index in the source System.Collections.Generic.List<T> at
// which copying begins.
//
// Exceptions:
// System.ArgumentNullException:
// array is null.
//
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-arrayIndex is less than 0.-or-count is less than
// 0.
//
// System.ArgumentException:
// index is equal to or greater than the System.Collections.Generic.List<T>.Count
// of the source System.Collections.Generic.List<T>.-or-arrayIndex is equal
// to or greater than the length of array.-or-The number of elements from index
// to the end of the source System.Collections.Generic.List<T> is greater than
// the available space from arrayIndex to the end of the destination array.
public void CopyTo(int index, T[] array, int arrayIndex, int count)
{
list.CopyTo(index, array, arrayIndex, count);
}
//
///<summary>
// Determines whether the System.Collections.Generic.List<T> contains elements
// that match the conditions defined by the specified predicate.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the elements
// to search for.
//
// Returns:
// true if the System.Collections.Generic.List<T> contains one or more elements
// that match the conditions defined by the specified predicate; otherwise,
// false.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public bool Exists(Predicate<T> match)
{
return list.Exists(match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the first occurrence within the entire System.Collections.Generic.List<T>.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The first element that matches the conditions defined by the specified predicate,
// if found; otherwise, the default value for type T.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public T Find(Predicate<T> match)
{
return list.Find(match);
}
//
///<summary>
// Retrieves the all the elements that match the conditions defined by the specified
// predicate.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the elements
// to search for.
//
// Returns:
// A System.Collections.Generic.List<T> containing all the elements that match
// the conditions defined by the specified predicate, if found; otherwise, an
// empty System.Collections.Generic.List<T>.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public List<T> FindAll(Predicate<T> match)
{
return list.FindAll(match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the first occurrence within
// the entire System.Collections.Generic.List<T>.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the first occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public int FindIndex(Predicate<T> match)
{
return list.FindIndex(match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the first occurrence within
// the range of elements in the System.Collections.Generic.List<T> that extends
// from the specified index to the last element.
//
// Parameters:
// startIndex:
// The zero-based starting index of the search.
//
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the first occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// startIndex is outside the range of valid indexes for the System.Collections.Generic.List<T>.
//
// System.ArgumentNullException:
// match is null.
public int FindIndex(int startIndex, Predicate<T> match)
{
return list.FindIndex(startIndex, match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the first occurrence within
// the range of elements in the System.Collections.Generic.List<T> that starts
// at the specified index and contains the specified number of elements.
//
// Parameters:
// count:
// The number of elements in the section to search.
//
// startIndex:
// The zero-based starting index of the search.
//
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the first occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// startIndex is outside the range of valid indexes for the System.Collections.Generic.List<T>.-or-count
// is less than 0.-or-startIndex and count do not specify a valid section in
// the System.Collections.Generic.List<T>.
//
// System.ArgumentNullException:
// match is null.
public int FindIndex(int startIndex, int count, Predicate<T> match)
{
return list.FindIndex(startIndex, count, match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the last occurrence within the entire System.Collections.Generic.List<T>.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The last element that matches the conditions defined by the specified predicate,
// if found; otherwise, the default value for type T.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public T FindLast(Predicate<T> match)
{
return list.FindLast(match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the last occurrence within
// the entire System.Collections.Generic.List<T>.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the last occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public int FindLastIndex(Predicate<T> match)
{
return list.FindLastIndex(match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the last occurrence within
// the range of elements in the System.Collections.Generic.List<T> that extends
// from the first element to the specified index.
//
// Parameters:
// startIndex:
// The zero-based starting index of the backward search.
//
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the last occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// startIndex is outside the range of valid indexes for the System.Collections.Generic.List<T>.
//
// System.ArgumentNullException:
// match is null.
public int FindLastIndex(int startIndex, Predicate<T> match)
{
return list.FindLastIndex(startIndex, match);
}
//
///<summary>
// Searches for an element that matches the conditions defined by the specified
// predicate, and returns the zero-based index of the last occurrence within
// the range of elements in the System.Collections.Generic.List<T> that contains
// the specified number of elements and ends at the specified index.
//
// Parameters:
// count:
// The number of elements in the section to search.
//
// startIndex:
// The zero-based starting index of the backward search.
//
// match:
// The System.Predicate<T> delegate that defines the conditions of the element
// to search for.
//
// Returns:
// The zero-based index of the last occurrence of an element that matches the
// conditions defined by match, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// startIndex is outside the range of valid indexes for the System.Collections.Generic.List<T>.-or-count
// is less than 0.-or-startIndex and count do not specify a valid section in
// the System.Collections.Generic.List<T>.
//
// System.ArgumentNullException:
// match is null.
public int FindLastIndex(int startIndex, int count, Predicate<T> match)
{
return list.FindLastIndex(startIndex, count, match);
}
//
///<summary>
// Performs the specified action on each element of the System.Collections.Generic.List<T>.
//
// Parameters:
// action:
// The System.Action<T> delegate to perform on each element of the System.Collections.Generic.List<T>.
//
// Exceptions:
// System.ArgumentNullException:
// action is null.
public void ForEach(Action<T> action)
{
list.ForEach(action); // even if action modifies the list, the changes will be caught by appropriate changing member
}
//
///<summary>
// Returns an enumerator that iterates through the System.Collections.Generic.List<T>.
//
// Returns:
// A System.Collections.Generic.List<T>.Enumerator for the System.Collections.Generic.List<T>.
public virtual IEnumerator<T> GetEnumerator()
{
return list.GetEnumerator();
}
//
///<summary>
// Creates a shallow copy of a range of elements in the source System.Collections.Generic.List<T>.
//
// Parameters:
// count:
// The number of elements in the range.
//
// index:
// The zero-based System.Collections.Generic.List<T> index at which the range
// starts.
//
// Returns:
// A shallow copy of a range of elements in the source System.Collections.Generic.List<T>.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-count is less than 0.
//
// System.ArgumentException:
// index and count do not denote a valid range of elements in the System.Collections.Generic.List<T>.
public List<T> GetRange(int index, int count)
{
return list.GetRange(index, count);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// first occurrence within the entire System.Collections.Generic.List<T>.
//
// Parameters:
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// Returns:
// The zero-based index of the first occurrence of item within the entire System.Collections.Generic.List<T>,
// if found; otherwise, 1.
public virtual int IndexOf(T item)
{
return list.IndexOf(item);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// first occurrence within the range of elements in the System.Collections.Generic.List<T>
// that extends from the specified index to the last element.
//
// Parameters:
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// index:
// The zero-based starting index of the search.
//
// Returns:
// The zero-based index of the first occurrence of item within the range of
// elements in the System.Collections.Generic.List<T> that extends from index
// to the last element, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is outside the range of valid indexes for the System.Collections.Generic.List<T>.
public int IndexOf(T item, int index)
{
return list.IndexOf(item, index);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// first occurrence within the range of elements in the System.Collections.Generic.List<T>
// that starts at the specified index and contains the specified number of elements.
//
// Parameters:
// count:
// The number of elements in the section to search.
//
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// index:
// The zero-based starting index of the search.
//
// Returns:
// The zero-based index of the first occurrence of item within the range of
// elements in the System.Collections.Generic.List<T> that starts at index and
// contains count number of elements, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is outside the range of valid indexes for the System.Collections.Generic.List<T>.-or-count
// is less than 0.-or-index and count do not specify a valid section in the
// System.Collections.Generic.List<T>.
public int IndexOf(T item, int index, int count)
{
return list.IndexOf(item, index, count);
}
//
///<summary>
// Inserts an element into the System.Collections.Generic.List<T> at the specified
// index.
//
// Parameters:
// item:
// The object to insert. The value can be null for reference types.
//
// index:
// The zero-based index at which item should be inserted.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-index is greater than System.Collections.Generic.List<T>.Count.
public void Insert(int index, T item)
{
Enlist();
list.Insert(index, item);
}
//
///<summary>
// Inserts the elements of a collection into the System.Collections.Generic.List<T>
// at the specified index.
//
// Parameters:
// collection:
// The collection whose elements should be inserted into the System.Collections.Generic.List<T>.
// The collection itself cannot be null, but it can contain elements that are
// null, if type T is a reference type.
//
// index:
// The zero-based index at which the new elements should be inserted.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-index is greater than System.Collections.Generic.List<T>.Count.
//
// System.ArgumentNullException:
// collection is null.
public void InsertRange(int index, IEnumerable<T> collection)
{
Enlist();
list.InsertRange(index, collection);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// last occurrence within the entire System.Collections.Generic.List<T>.
//
// Parameters:
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// Returns:
// The zero-based index of the last occurrence of item within the entire the
// System.Collections.Generic.List<T>, if found; otherwise, 1.
public int LastIndexOf(T item)
{
return list.LastIndexOf(item);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// last occurrence within the range of elements in the System.Collections.Generic.List<T>
// that extends from the first element to the specified index.
//
// Parameters:
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// index:
// The zero-based starting index of the backward search.
//
// Returns:
// The zero-based index of the last occurrence of item within the range of elements
// in the System.Collections.Generic.List<T> that extends from the first element
// to index, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is outside the range of valid indexes for the System.Collections.Generic.List<T>.
public int LastIndexOf(T item, int index)
{
return list.LastIndexOf(item, index);
}
//
///<summary>
// Searches for the specified object and returns the zero-based index of the
// last occurrence within the range of elements in the System.Collections.Generic.List<T>
// that contains the specified number of elements and ends at the specified
// index.
//
// Parameters:
// count:
// The number of elements in the section to search.
//
// item:
// The object to locate in the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// index:
// The zero-based starting index of the backward search.
//
// Returns:
// The zero-based index of the last occurrence of item within the range of elements
// in the System.Collections.Generic.List<T> that contains count number of elements
// and ends at index, if found; otherwise, 1.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is outside the range of valid indexes for the System.Collections.Generic.List<T>.-or-count
// is less than 0.-or-index and count do not specify a valid section in the
// System.Collections.Generic.List<T>.
public int LastIndexOf(T item, int index, int count)
{
return list.LastIndexOf(item, index, count);
}
//
///<summary>
// Removes the first occurrence of a specific object from the System.Collections.Generic.List<T>.
//
// Parameters:
// item:
// The object to remove from the System.Collections.Generic.List<T>. The value
// can be null for reference types.
//
// Returns:
// true if item is successfully removed; otherwise, false. This method also
// returns false if item was not found in the System.Collections.Generic.List<T>.
public bool Remove(T item)
{
Enlist();
return list.Remove(item);
}
//
///<summary>
// Removes the all the elements that match the conditions defined by the specified
// predicate.
//
// Parameters:
// match:
// The System.Predicate<T> delegate that defines the conditions of the elements
// to remove.
//
// Returns:
// The number of elements removed from the System.Collections.Generic.List<T>
// .
//
// Exceptions:
// System.ArgumentNullException:
// match is null.
public int RemoveAll(Predicate<T> match)
{
Enlist();
return list.RemoveAll(match);
}
//
///<summary>
// Removes the element at the specified index of the System.Collections.Generic.List<T>.
//
// Parameters:
// index:
// The zero-based index of the element to remove.
//
// Exceptions:
// System.ArgumentOutOfRangeException:
// index is less than 0.-or-index is equal to or greater than System.Collections.Generic.List<T>.Count.
public void RemoveAt(int index)
{
Enlist();
list.RemoveAt(index);
}
//