Search Result

Collapse
5 results in 0.0036 seconds.
Keywords
Members
Tags
hashtable
  •  

  • farshadak2004
    started a topic .accdb database and Hashtable

    .accdb database and Hashtable

    I am building a dictionary from English to Malay language. I have added my database which is under .accdb extenstion to Server Explorer in C# and now I want to add all the words from my database into hashtable. Do you have any suggestion how can I put the database in hashtable?
    See more | Go to post

  • How to Import Text file with Feild names in each line to Hashtable ?

    Hi All,

    I am very new in C# and am doing a test project. In my project i m using a text file which has records along with feild name in each line. How can i import the data in a Hashtable ??

    Text File Example :

    First_Name Joe
    Last_Name Smith
    Cell 9785466885
    Email joesmith@xyz.co m

    First_Name Amanda
    Last_Name Collin
    Cell 4485965755
    Email amandacollin@gs tock.co...
    See more | Go to post

  • JakeMathews
    started a topic Hashtable and forloop error

    Hashtable and forloop error

    Hi everyone,

    First off this is my first post on this site so hello again.
    I'm a beginner at programming in C#/ASP so the code I'm about show you may be bad practice or even worse but I'm getting better I hope.

    What I want: I want to populate a hashtable(compl eteList) with an arraylist(myArr List) to do this I'm using a for loop which also appends information from another arraylist(nameL istArray) to a string(nameList )...
    See more | Go to post

  • Karlen
    started a topic Search in hashtable with regular expressions.

    Search in hashtable with regular expressions.

    I have a hashtable and I want to search any word in it. Can I make the search with regular expressions?
    See more | Go to post
    Last edited by Niheel; May 10 '10, 10:50 AM. Reason: punctuation, grammar

  • eliza64
    Guest started a topic How To Iterate the Hashtable in C#

    How To Iterate the Hashtable in C#

    If we write this for the hashtable then we would not get the desired values.
    Code:
      Hashtable ss = new Hashtable();
      ss["key1"] ="india";
      ss["key2"] = "bharat";
     
      foreach (object gg in ss)
      {
        Console.WriteLine("Key value is " + gg);
        Console.Read();
      }
    Here we get System.Collecti ons.DictionaryE ntry and System.Collecti ons.DictionaryE ntry...
    See more | Go to post
    Last edited by Frinavale; Mar 22 '10, 04:14 PM. Reason: Please post code in [code] ... [/code] tags.
Working...