Click here to Skip to main content
15,886,362 members
Home / Discussions / C#
   

C#

 
GeneralRe: Serial Communication Pin
Luc Pattyn16-Oct-09 7:56
sitebuilderLuc Pattyn16-Oct-09 7:56 
GeneralRe: Serial Communication Pin
dybs16-Oct-09 18:44
dybs16-Oct-09 18:44 
QuestionHow to store words for a dictionary? Pin
Yednekachew16-Oct-09 6:30
Yednekachew16-Oct-09 6:30 
AnswerRe: How to store words for a dictionary? Pin
_Madmatt16-Oct-09 6:34
_Madmatt16-Oct-09 6:34 
AnswerRe: How to store words for a dictionary? Pin
Luc Pattyn16-Oct-09 6:46
sitebuilderLuc Pattyn16-Oct-09 6:46 
GeneralRe: How to store words for a dictionary? Pin
Yednekachew16-Oct-09 6:52
Yednekachew16-Oct-09 6:52 
GeneralRe: How to store words for a dictionary? Pin
Luc Pattyn16-Oct-09 6:55
sitebuilderLuc Pattyn16-Oct-09 6:55 
GeneralRe: How to store words for a dictionary? Pin
Dan Neely16-Oct-09 7:12
Dan Neely16-Oct-09 7:12 
Luc Pattyn wrote:
However if you want to store metadata (such as noun/verb/...), you would have to define a class or struct Word, and then your dictionary becomes a Dictionary<word, list<word="">>


This is less than optimal. In a large dictionary you'd have massive duplication in the List<word>'s. Probably the best option would be to do 2 dictionary<>'s and create a key/ID for the english words.

Dictionary<Word, List<int>>  TranslationDictionary;  //Amharic word, English word ID's
Dictionary<int, Word> EnglishDictionary;  //English word ID, English word


The latest nation. Procrastination.

GeneralRe: How to store words for a dictionary? Pin
Luc Pattyn16-Oct-09 7:59
sitebuilderLuc Pattyn16-Oct-09 7:59 
JokeRe: How to store words for a dictionary? Pin
Dan Neely16-Oct-09 8:24
Dan Neely16-Oct-09 8:24 
GeneralRe: How to store words for a dictionary? Pin
Luc Pattyn16-Oct-09 8:36
sitebuilderLuc Pattyn16-Oct-09 8:36 
GeneralRe: How to store words for a dictionary? Pin
PIEBALDconsult16-Oct-09 14:20
mvePIEBALDconsult16-Oct-09 14:20 
AnswerRe: How to store words for a dictionary? Pin
PIEBALDconsult16-Oct-09 7:01
mvePIEBALDconsult16-Oct-09 7:01 
GeneralRe: How to store words for a dictionary? Pin
Luc Pattyn16-Oct-09 8:01
sitebuilderLuc Pattyn16-Oct-09 8:01 
GeneralRe: How to store words for a dictionary? Pin
Dan Neely16-Oct-09 8:25
Dan Neely16-Oct-09 8:25 
GeneralRe: How to store words for a dictionary? Pin
PIEBALDconsult16-Oct-09 14:09
mvePIEBALDconsult16-Oct-09 14:09 
JokeRe: How to store words for a dictionary? Pin
Not Active16-Oct-09 8:22
mentorNot Active16-Oct-09 8:22 
QuestionHow to sort Custom class which is of type array as per one of its value Pin
miniThomas16-Oct-09 5:44
miniThomas16-Oct-09 5:44 
AnswerRe: How to sort Custom class which is of type array as per one of its value Pin
Luc Pattyn16-Oct-09 5:53
sitebuilderLuc Pattyn16-Oct-09 5:53 
AnswerRe: How to sort Custom class which is of type array as per one of its value Pin
Mirko198016-Oct-09 6:09
Mirko198016-Oct-09 6:09 
GeneralRe: How to sort Custom class which is of type array as per one of its value Pin
Luc Pattyn16-Oct-09 6:13
sitebuilderLuc Pattyn16-Oct-09 6:13 
GeneralRe: How to sort Custom class which is of type array as per one of its value Pin
Mirko198017-Oct-09 0:29
Mirko198017-Oct-09 0:29 
GeneralRe: How to sort Custom class which is of type array as per one of its value Pin
miniThomas17-Oct-09 19:05
miniThomas17-Oct-09 19:05 
GeneralRe: How to sort Custom class which is of type array as per one of its value Pin
Mirko198018-Oct-09 22:45
Mirko198018-Oct-09 22:45 
QuestionHow to i learn an email server is is pop3 or not? Pin
kuyucakli16-Oct-09 5:08
kuyucakli16-Oct-09 5:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.