Simple Demo for NameValueCollection : NameValueCollection « Data Structure « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Data Structure » NameValueCollectionScreenshots 
Simple Demo for NameValueCollection
Simple Demo for NameValueCollection
 
Imports System
Imports System.Collections
Imports System.Collections.Specialized


Public Class MainClass
    
    Shared Sub Main(ByVal args As String())
        Dim nvc As New NameValueCollection
        nvc.Add("Value 1""Key 1")
        nvc.Add("Value 2""Key 2")
        nvc.Add("Value 3""Key 3")
        nvc.Add("Value 4""Key 4")
        nvc.Add("Value 5""Key 5")
        nvc.Add("Value 6""Key 6")
        nvc.Add("Value 7""Key 7")

        Dim values() As String
        For Each key As String In nvc.Keys
            Console.Write(key & ":")
            values = nvc.GetValues(key)
            For Each value As String In values
                Console.WriteLine("    " & value)
            Next value
        Next key

        Console.WriteLine()
        For Each key As String In nvc.Keys
            Console.WriteLine(key & ": " & nvc.Item(key))
        Next key
        
    End Sub
End Class
  

           
         
  
Related examples in the same category
1.NameValueCollection Class represents String keys and String values
2.Copies the values to a string array and displays the string array
3.Searches for a key and deletes it
4.Clears the entire collection
ww__w__.___j_av___a_2__s_.__c___o_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.