A | B |
keyboard sortcut that allows the user to perform an action on a control using the keyboard | access key |
adds a specified object to the end of a List | Add method of class List |
a class used to store groups of related objects | collection |
returns the number of objects contained in the List | count property of List |
a LINQ query is not executed until you begin to iterate over its results | deferred execution |
a capability that allows certain objects (such as Lists) to increase or decrease in size based on the addition or removal of elements from that object. Enables th List object to increase its size to accommodate new elements and to decrease its size when elements are removed | dynamic resizing |
used to store a reference to the current value of the collection being iterated | element of a For Each....Next statement |
iterates through elements in an array or collection | For Each....Next repetition statement |
specifies a range variable and the data source to query | From clause (of a LINQ query) |
specifies the array or collection through which you wish to iterate | group (of a For Each...Next statement) |
the value with which you can refer to a specific element in a List, based on the element's location in the List | index of a List |
provides methods to iterate through a set of objects, such as an array or collection | IEnumberable interface |
inserts a specified object into the specified location of a List | Insert method of class List |
specifies a set of methods that can be called on an object which implements the interface to perform certain tasks | interface |
collection containing the values displayed in a ComboBox | items property of ComboBox |
provides support for writing queries in Visual Basic | Language-Integrated Query (LINQ) |
has the same capabilties as an array as well as dynamic resizing and more | List (Of T) class |
specifies the maximum number of characters that can be input into a TextBox | MaxLength property of TextBox |
retrieves specific information from a data source, such as a collection | query (LINQ) |
the control variable for a LINQ query | range variable (LINQ) |
removes the objectlocated at a specifie location of a List | RemoveAt method of class List |
specifies the value(s) placed in the results of the query | Select clause (of a LINQ) query |
raised when a new value is selected in a ComboBox | SelectedIndexChanged event of ComboBox |
contains collection classes such as List | System.Collections.Generic namespace |
A control property that specifies the order in which focus is transferred to controls on the Form when the Tab key is pressed | TabIndex property |
a control property that specifies whether a control can receive the focus when the Tab key is pressed | TabStop property |
returns a String representation of the object or data type on which the method is called | ToString method |
specifies the conditions that must be met for an item to be included in the results | Where clause (of a LINQ query) |