Generic Collection and List : Generic Collections « Generics « C# / C Sharp






Generic Collection and List

   
using System;
using System.Collections.ObjectModel;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization;

public class CollectionTest {
    public static void Main() {
        Collection<int> intCollection = new Collection<int>();

        List<String> strList = new List<String>();
        strList.Add("Val1");
        strList.Add("Val2");

        Collection<String> strCollection = new Collection<String>(strList);

        foreach (String strVal1 in strCollection)
            System.Console.WriteLine(strVal1);

        strList[0] = "Val Changed";

        foreach (String strVal2 in strCollection)
            System.Console.WriteLine(strVal2);
    }
}

   
    
  








Related examples in the same category

1.Add user-defined object to generic Collection
2.Add Collection Items with IComparable interface implementation
3.Sort by Name
4.Add object in a hierarchy into a generic Collection
5.Generic collection class
6.Represents a generic collection of key/value pairs. The enumerator returns the values in the order assigned.
7.List To String
8.Convert Dictionary to String
9.String list and String set