About 1,950,000 results
Open links in new tab
  1. VB.NET - Dictionary Examples - Dot Net Perls

    Nov 30, 2023 · In VB.NET the Dictionary allows fast key lookups. A generic type, it can use any types for its keys and values. Its syntax is at first confusing. Compared to alternatives, a Dictionary is easy to use and effective. It has many functions (like ContainsKey and TryGetValue) that do lookups. Add example.

    Missing:

    • Computer Science

    Must include:

  2. Dictionary in Visual Basic - CodeStack

    Visual Basic dictionary object is a collection of unique keys and associated values. It is also possible to index items with keys in collection, but in this case it is only possible to have keys of String types.

    Missing:

    • Computer Science

    Must include:

  3. Dictionary object | Microsoft Learn

    A Dictionary object is the equivalent of a PERL associative array. Items, which can be any form of data, are stored in the array. Each item is associated with a unique key. The key is used to retrieve an individual item and is usually an integer or a …

    Missing:

    • Computer Science

    Must include:

  4. vb.net - How to find values in dictionary in VB - Stack Overflow

    I have this dictionary: Dim chardict As Dictionary (Of Char, Integer) = Nothing chardict.Add ("A", 0) chardict.Add ("B", 1) I want to do the following if statement but I am a bit ...

  5. VB.NET Dictionary - CosmicLearn

    Whether handling simple key-value pairs or managing complex associations, mastering Dictionary(Of TKey, TValue) is essential for any VB.NET developer aiming to write clean and efficient code.

    Missing:

    • Computer Science

    Must include:

  6. Dictionary: Program code ( visual basic ) - Blogger

    Apr 7, 2017 · Computer Science(9608) notes and Resources Implementing a dictionary using Dictionary class in Visual Basic ...

  7. ada-code-samples/data-structures/dictionaries/visual-basic/dictionary

    Run the program","","","Module Program"," ' The Main subroutine is the entry point for all VB programs"," Sub Main()"," ' Declare and initialise the astronaut dictionary"," Dim astronaut = …

  8. VB.Net Multiple Key Dictionary Example – Brian's Code

    Oct 20, 2017 · In our example we’re going to cover constructing the dictionary, constructing the key set, comparing the key set for a match, adding to the dictionary, updating the dictionary, removing an item from the dictionary and lastly looping through the dictionary.

    Missing:

    • Computer Science

    Must include:

  9. ada-code-samples/data-structures/dictionaries/visual-basic

    Code examples to support various Computer Science materials - raspberrypilearning/ada-code-samples

  10. Stuart's Place | Information Technology | Programming | Visual Basic ...

    Dictionaries in Visual Basic store data in key and value pairs. Unlike lists, where items are accessible using their numeric index value, items in a dictionary are accessible via their key, which can be of any data type.

  11. Some results have been removed
Refresh