Click here to Skip to main content
15,901,373 members
Home / Discussions / C#
   

C#

 
Questionsave file in target machine Pin
arkiboys8-Jun-09 23:59
arkiboys8-Jun-09 23:59 
AnswerRe: save file in target machine Pin
Christian Graus9-Jun-09 0:05
protectorChristian Graus9-Jun-09 0:05 
GeneralRe: save file in target machine Pin
arkiboys9-Jun-09 0:17
arkiboys9-Jun-09 0:17 
GeneralRe: save file in target machine Pin
Christian Graus9-Jun-09 0:25
protectorChristian Graus9-Jun-09 0:25 
GeneralRe: save file in target machine Pin
arkiboys9-Jun-09 1:29
arkiboys9-Jun-09 1:29 
Questionbuild dictionary by C#! Pin
Bill Do8-Jun-09 23:49
Bill Do8-Jun-09 23:49 
AnswerRe: build dictionary by C#! Pin
Christian Graus8-Jun-09 23:54
protectorChristian Graus8-Jun-09 23:54 
AnswerRe: build dictionary by C#! Pin
DaveyM699-Jun-09 0:03
professionalDaveyM699-Jun-09 0:03 
You could maybe use a dictionary, using the word as the key and a definition class instance as value?

Something like:
public class Definition
{
    public Definition(string meaning, string pronoun)
    {
        Meaning = meaning;
        Pronoun = pronoun;
    }
    public string Meaning { get; private set; }
    public string Pronoun { get; private set; }
}
Dictionary<string, Definition> definitions = new Dictionary<string, Definition>();
public void AddDefinition(string word, string meaning, string pronoun)
{
    definitions.Add(word, new Definition(meaning, pronoun));
}
// other methods here...


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

AnswerRe: build dictionary by C#! Pin
Seraph_summer9-Jun-09 0:07
Seraph_summer9-Jun-09 0:07 
GeneralRe: build dictionary by C#! Pin
Bill Do9-Jun-09 2:06
Bill Do9-Jun-09 2:06 
Questionhelo every body! (Sorry, english of my bad!) Pin
Bill Do8-Jun-09 23:49
Bill Do8-Jun-09 23:49 
AnswerRe: helo every body! (Sorry, english of my bad!) Pin
Christian Graus8-Jun-09 23:54
protectorChristian Graus8-Jun-09 23:54 
Questionint.Parse() and Converter.toInt() Pin
Seraph_summer8-Jun-09 23:46
Seraph_summer8-Jun-09 23:46 
AnswerRe: int.Parse() and Converter.toInt() Pin
Eddy Vluggen8-Jun-09 23:55
professionalEddy Vluggen8-Jun-09 23:55 
GeneralRe: int.Parse() and Converter.toInt() Pin
Seraph_summer9-Jun-09 0:02
Seraph_summer9-Jun-09 0:02 
AnswerRe: int.Parse() and Converter.toInt() Pin
Christian Graus8-Jun-09 23:55
protectorChristian Graus8-Jun-09 23:55 
AnswerRe: int.Parse() and Converter.toInt() Pin
saanj9-Jun-09 0:01
saanj9-Jun-09 0:01 
GeneralRe: int.Parse() and Converter.toInt() Pin
Seraph_summer9-Jun-09 0:03
Seraph_summer9-Jun-09 0:03 
GeneralRe: int.Parse() and Converter.toInt() Pin
saanj9-Jun-09 0:11
saanj9-Jun-09 0:11 
QuestionTimer in C# Pin
Håkan Axheim8-Jun-09 23:11
Håkan Axheim8-Jun-09 23:11 
AnswerRe: Timer in C# Pin
Christian Graus8-Jun-09 23:26
protectorChristian Graus8-Jun-09 23:26 
AnswerRe: Timer in C# Pin
Mirko19808-Jun-09 23:29
Mirko19808-Jun-09 23:29 
QuestionMultiple bitmaps into one final image. Pin
E3pO8-Jun-09 23:01
E3pO8-Jun-09 23:01 
GeneralRe: Multiple bitmaps into one final image. Pin
harold aptroot8-Jun-09 23:09
harold aptroot8-Jun-09 23:09 
GeneralRe: Multiple bitmaps into one final image. Pin
E3pO8-Jun-09 23:15
E3pO8-Jun-09 23:15 

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.