RegexValidatedStringList Methods |
The RegexValidatedStringList type exposes the following members.
Name | Description | |
---|---|---|
![]() | Add | |
![]() | Clear | |
![]() | Contains | |
![]() | CopyTo | |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetEnumerator | |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IndexOf | |
![]() | Insert | |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Remove | |
![]() | RemoveAt | |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | ValidateItem |
Validate that a string meets the criteria required to be added to the list
|
Name | Description | |
---|---|---|
![]() | AddRangeString |
Adds a set of items to a list.
(Defined by ListExtensions.) |
![]() | AppendString(String) | Overloaded.
Yield an Enumeration of the list with the item appended to the end
(Defined by IEnumerableExtensions.) |
![]() | AppendString(IEnumerableString) | Overloaded.
Yield a concatenation of the two Enumerable lists
(Defined by IEnumerableExtensions.) |
![]() | AsReadOnlyString |
Convert a List into a ReadOnly list.
(Defined by ListExtensions.) |
![]() | ConvertAllString, TOutput |
Runs each item through a conversion and returns the produced list.
(Defined by ListExtensions.) |
![]() | ElementAtString |
Returns the element at a specified index in a sequence.
(Defined by IEnumerableExtensions.) |
![]() | FirstString |
Same semantics as Enumerable.First(), but optimized for ILists. Throws an exception if the list is empty.
(Defined by IEnumerableExtensions.) |
![]() | ForEachString(ActionString) | Overloaded.
Calls an action on each element of a sequence. The action takes one argument: an element. It has no return value.
(Defined by IEnumerableExtensions.) |
![]() | ForEachString(ActionString, Int32) | Overloaded.
Calls an action on each element of a sequence. The action takes two arguments: an element and the index of the element.
It has no return value.
(Defined by IEnumerableExtensions.) |
![]() | LastString |
Same semantics as Enumerable.Last(), but optimized for ILists. Throws an exception if the list is empty.
(Defined by IEnumerableExtensions.) |
![]() | ShuffleString |
Shuffles the elements of a sequence.
(Defined by IEnumerableExtensions.) |
![]() | SingleString |
Same semantics as Enumerable.Single(IEnumerable), but optimized for ILists. Throws an exception if list does not contain exactly 1 element. Otherwise returns that element.
(Defined by IEnumerableExtensions.) |
![]() | StringJoin | Overloaded.
Creates a string from a sequence of elements. No delimiter is used.
(Defined by IEnumerableExtensions.) |
![]() | StringJoin(String) | Overloaded.
Creates a delimited string from a sequence of elements.
(Defined by IEnumerableExtensions.) |
![]() | StringJoin(String, Int32, String) | Overloaded.
Creates a delimited string from a sequence of elements. At most maxLength elements will be used and "..." shows that more elements were in the list.
(Defined by IEnumerableExtensions.) |
![]() | SubSequenceString |
Take the items from a sequence starting with item # start (index 0) and contining for count items.
(Defined by IEnumerableExtensions.) |
![]() | ToHashSetString | Overloaded.
Creates a HashSet from a sequence. If the sequence is already a HashSet, a new HashSet is still created.
(Defined by IEnumerableExtensions.) |
![]() | ToHashSetString(IEqualityComparerString) | Overloaded.
Creates a HashSet from a sequence. If the sequence is already a HashSet, a new HashSet is still created.
(Defined by IEnumerableExtensions.) |
![]() | ToQueueString |
Creates a Queue from a sequence. If the sequence is already a Queue, a new Queue is still created.
(Defined by IEnumerableExtensions.) |