GrammarCollection Members
Include Protected Members
Include Inherited Members
A collection of grammar objects.
The GrammarCollection type exposes the following members.
Constructors
Name | Description | |
---|---|---|
GrammarCollection | Creates a new collection. |
Top
Properties
Name | Description | |
---|---|---|
Count | Gets the number of items in the collection. (inherited from BaseCollection<T>) | |
IsFixedSize | Gets a boolean that specifies whether the size of the collection is fixed. (inherited from BaseCollection<T>) | |
IsReadOnly | Gets a boolean that specifies whether the collection is read-only. (inherited from BaseCollection<T>) | |
IsSynchronized | Gets a boolean that specifies whether the collection is synchronized. (inherited from BaseCollection<T>) | |
Item | Gets or sets an element in the collection at a specific position. (inherited from BaseCollection<T>) | |
SyncRoot | Gets an object that can be used to synchronize access to the collection. (inherited from BaseCollection<T>) |
Top
Methods
Name | Description | |
---|---|---|
Add | Adds an element to the collection. (inherited from BaseCollection<T>) | |
AddRange | Adds a collection to the collection. (inherited from BaseCollection<T>) | |
Clear | Removes all the elements from the collection. (inherited from BaseCollection<T>) | |
Contains | Checks whether an element is contained in the collection. (inherited from BaseCollection<T>) | |
CopyTo | Copies the items of the collection to an array. (inherited from BaseCollection<T>) | |
Equals | (inherited from Object) | |
Finalize | (inherited from Object) | |
GetEnumerator | Gets an enumerator over the collection. (inherited from BaseCollection<T>) | |
GetHashCode | (inherited from Object) | |
GetObjectData | Populates a SerializationInfo object with the data needed to serialize the target object. (inherited from BaseCollection<T>) | |
GetType | (inherited from Object) | |
IndexOf | Gets the position of an element in the collection. (inherited from BaseCollection<T>) | |
Insert | Inserts an element at a specific position in the collection. (inherited from BaseCollection<T>) | |
MemberwiseClone | (inherited from Object) | |
OnAdded | Called when an object has been added to the collection. (inherited from BaseCollection<T>) | |
OnAdding | Called when an object is about to be added to the collection. (inherited from BaseCollection<T>) | |
OnRemoving | Called when an object is about to be removed from the collection. (inherited from BaseCollection<T>) | |
Remove | Removes an element from the collection. (inherited from BaseCollection<T>) | |
RemoveAt | Removes the element at a specific position in the collection. (inherited from BaseCollection<T>) | |
ToString | (inherited from Object) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator | Gets an enumerator over the collection. (inherited from BaseCollection<T>) |
Top