Get the Hash code for string value : Hash Code « Development Class « 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 » Development Class » Hash CodeScreenshots 
Get the Hash code for string value
Get the Hash code for string value


using System;
public class HashValues {
  public static void Main( ) {    
    String[] identifiers ={"A","B","C","D","E","F","G","H","I","J","K","L"}
    
    for(int i = 0; i < identifiers.Length; i++) {
      String id = identifiers[i];
      int hash = id.GetHashCode();
      int code = hash % 23;
      Console.WriteLine("{0,-12}{1,12}{2,12}", id, hash, code);
    }
  }
}

           
       
Related examples in the same category
1.Class behaves properly using overridden Equals and GetHashCode methodsClass behaves properly using overridden Equals and GetHashCode methods
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.