Second ToDictionary : ToDictionary « LINQ « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » LINQ » ToDictionaryScreenshots 
Second ToDictionary
 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
public class Employee2 {
    public string id;
    public string firstName;
    public string lastName;

    public static ArrayList GetEmployeesArrayList() {
        ArrayList al = new ArrayList();
        al.Add(new Employee2 id = "1", firstName = "J", lastName = "R" });
        al.Add(new Employee2 id = "2", firstName = "W", lastName = "G" });
        al.Add(new Employee2 id = "3", firstName = "A",lastName = "H"});
        al.Add(new Employee2 id = "4", firstName = "D", lastName = "L" });
        al.Add(new Employee2 id = "101", firstName = "K", lastName = "F" });
        return (al);
    }

    public static Employee2[] GetEmployeesArray() {
        return ((Employee2[])GetEmployeesArrayList().ToArray(typeof(Employee2)));
    }
}
public class MyStringifiedNumberComparer : IEqualityComparer<string> {
    public bool Equals(string x, string y) {
        return (Int32.Parse(x== Int32.Parse(y));
    }

    public int GetHashCode(string obj) {
        return Int32.Parse(obj).ToString().GetHashCode();
    }
}

public class MainClass {
    public static void Main() {
        Dictionary<string, Employee2> eDictionary = Employee2.GetEmployeesArray().ToDictionary(k => k.id, new MyStringifiedNumberComparer());
        Employee2 e = eDictionary["2"];
        Console.WriteLine("Employee whose id == \"2\" : {0} {1}", e.firstName, e.lastName);
        e = eDictionary["000002"];
        Console.WriteLine("Employee whose id == \"000002\" : {0} {1}",e.firstName, e.lastName);
    }
}

 
Related examples in the same category
1.Convert query to Dictionary
2.ToDictionary: convert query result to Dictionary
3.Calling the First ToDictionary Prototype
4.ToDictionary for an object list
5.ToDictionary with IEqualityComparer
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.