Search Result
Collapse
5 results in 0.0036 seconds.
Keywords
Members
Tags
-
.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? -
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... -
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 )... -
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? -
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(); }
Last edited by Frinavale; Mar 22 '10, 04:14 PM. Reason: Please post code in [code] ... [/code] tags.