Click here to Skip to main content
15,880,427 members
Home / Discussions / C#
   

C#

 
GeneralRe: cannot send text encryption via email Pin
KaKoten26-Jul-14 22:16
KaKoten26-Jul-14 22:16 
GeneralRe: cannot send text encryption via email Pin
Eddy Vluggen27-Jul-14 0:15
professionalEddy Vluggen27-Jul-14 0:15 
GeneralRe: cannot send text encryption via email Pin
KaKoten27-Jul-14 18:13
KaKoten27-Jul-14 18:13 
GeneralRe: cannot send text encryption via email Pin
Eddy Vluggen28-Jul-14 2:54
professionalEddy Vluggen28-Jul-14 2:54 
GeneralRe: cannot send text encryption via email Pin
KaKoten28-Jul-14 11:54
KaKoten28-Jul-14 11:54 
GeneralRe: cannot send text encryption via email Pin
Eddy Vluggen28-Jul-14 12:17
professionalEddy Vluggen28-Jul-14 12:17 
GeneralRe: cannot send text encryption via email Pin
KaKoten28-Jul-14 16:53
KaKoten28-Jul-14 16:53 
QuestionC# File to Dictionary Lookup Pin
Member 1094881825-Jul-14 14:35
Member 1094881825-Jul-14 14:35 
Question:
How do you read pairs of lines from reader to make entries in lookup, until the end of the file is reached, The two lines in a pair become the key and value for an entry in lookup.

Ex. if the remaining file lines are the four at the right, then two entries would be made in lookup, one with key "up" having value "down", and one with key "in" having value "out".


I'd like to use this function:

public static void FileToDict(StreamReader reader,
Dictionary<string, string=""> lookup)
{
}

This is what i've come up with so far.. I am totally lost. Help with anything please!


using System;
using System.Collections.Generic;
using System.Linq;



class Program

{
static void Main()
{
List<string>< list = new List<string, string="">()
{
"Up","down",
"In","out"
};
Dictionary<string, string=""> dictionary = values.ToDictionary(x=>, x =>true);
Foreach (KeyValuePair<string, string=""> pair in dictionary)
{
Console.WriteLine(pair);
}
}
}
}
GeneralRe: C# File to Dictionary Lookup Pin
PIEBALDconsult25-Jul-14 14:50
mvePIEBALDconsult25-Jul-14 14:50 
GeneralRe: C# File to Dictionary Lookup Pin
Member 1094881825-Jul-14 16:51
Member 1094881825-Jul-14 16:51 
Questionread value from item array in user control Pin
Jassim Rahma25-Jul-14 9:18
Jassim Rahma25-Jul-14 9:18 
AnswerRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 11:19
mveGerry Schmitz25-Jul-14 11:19 
GeneralRe: read value from item array in user control Pin
Jassim Rahma25-Jul-14 12:42
Jassim Rahma25-Jul-14 12:42 
GeneralRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 14:09
mveGerry Schmitz25-Jul-14 14:09 
GeneralRe: read value from item array in user control Pin
Jassim Rahma25-Jul-14 14:34
Jassim Rahma25-Jul-14 14:34 
GeneralRe: read value from item array in user control Pin
Gerry Schmitz25-Jul-14 15:01
mveGerry Schmitz25-Jul-14 15:01 
AnswerRe: read value from item array in user control Pin
KUMAR61927-Jul-14 20:54
professionalKUMAR61927-Jul-14 20:54 
AnswerRe: read value from item array in user control Pin
User 873938131-Jul-14 0:02
User 873938131-Jul-14 0:02 
QuestionComparison Overloading Pin
Rig Maitra25-Jul-14 6:14
Rig Maitra25-Jul-14 6:14 
AnswerRe: Comparison Overloading Pin
Rob Philpott25-Jul-14 6:23
Rob Philpott25-Jul-14 6:23 
GeneralRe: Comparison Overloading Pin
Rig Maitra25-Jul-14 6:29
Rig Maitra25-Jul-14 6:29 
GeneralRe: Comparison Overloading Pin
Rob Philpott25-Jul-14 6:43
Rob Philpott25-Jul-14 6:43 
GeneralRe: Comparison Overloading Pin
OriginalGriff25-Jul-14 8:50
mveOriginalGriff25-Jul-14 8:50 
AnswerRe: Comparison Overloading Pin
KUMAR61928-Jul-14 17:53
professionalKUMAR61928-Jul-14 17:53 
QuestionC# how to compare the old product(serialized) to new product,If same product means add the quantity only not repeated that product in output for below program Pin
Member 1097120125-Jul-14 3:22
Member 1097120125-Jul-14 3:22 

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.