Click here to Skip to main content
15,881,898 members
Home / Discussions / C#
   

C#

 
GeneralRe: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host Pin
milenalukic24-Jun-09 22:08
milenalukic24-Jun-09 22:08 
QuestionEncrypted Connection Pin
ziwez024-Jun-09 9:23
ziwez024-Jun-09 9:23 
AnswerRe: Encrypted Connection Pin
harold aptroot24-Jun-09 9:47
harold aptroot24-Jun-09 9:47 
GeneralRe: Encrypted Connection Pin
EliottA25-Jun-09 2:53
EliottA25-Jun-09 2:53 
GeneralRe: Encrypted Connection Pin
harold aptroot25-Jun-09 4:07
harold aptroot25-Jun-09 4:07 
GeneralRe: Encrypted Connection Pin
harold aptroot25-Jun-09 4:35
harold aptroot25-Jun-09 4:35 
AnswerRe: Encrypted Connection Pin
Mycroft Holmes24-Jun-09 19:24
professionalMycroft Holmes24-Jun-09 19:24 
QuestionProblem with String.Split() Pin
2TammyB24-Jun-09 8:13
2TammyB24-Jun-09 8:13 
Hi i am new to OOP and c# , Im building a program that reads settings form a .cfg file .

I have managed to import the entrire cfg file into an array using string .split

onst string fName = @"Settings.cfg";
            string[] lines = File.ReadAllLines(fName);
            List<string> fields = new List<string>();
            foreach (string s in lines)
            {
                if (s == "" || s.StartsWith(" ") || s.StartsWith("/"))
                {
                    continue;
                }
                fields.AddRange(s.Split(new char[] { '=' }));
            }
            Settings = fields.ToArray();


However this also adds the setting name to the array which is not needed , is there any way to modify the code so only values to the right of the = get added to the array ?

Thanks
AnswerRe: Problem with String.Split() Pin
led mike24-Jun-09 8:28
led mike24-Jun-09 8:28 
AnswerRe: Problem with String.Split() Pin
Fadi Yoosuf24-Jun-09 8:28
Fadi Yoosuf24-Jun-09 8:28 
AnswerRe: Problem with String.Split() Pin
Henry Minute24-Jun-09 8:34
Henry Minute24-Jun-09 8:34 
GeneralRe: Problem with String.Split() Pin
PIEBALDconsult24-Jun-09 9:29
mvePIEBALDconsult24-Jun-09 9:29 
AnswerRe: Problem with String.Split() Pin
Anthony Mushrow24-Jun-09 8:44
professionalAnthony Mushrow24-Jun-09 8:44 
GeneralRe: Problem with String.Split() Pin
Henry Minute24-Jun-09 10:24
Henry Minute24-Jun-09 10:24 
QuestionNeed date formate like yyyy-MM-dd with time like "2008-07-08 20:24:14" in Excel Pin
attalurisubbu24-Jun-09 8:01
attalurisubbu24-Jun-09 8:01 
AnswerRe: Need date formate like yyyy-MM-dd with time like "2008-07-08 20:24:14" in Excel Pin
PIEBALDconsult24-Jun-09 9:45
mvePIEBALDconsult24-Jun-09 9:45 
AnswerRe: Need date formate like yyyy-MM-dd with time like "2008-07-08 20:24:14" in Excel Pin
0x3c024-Jun-09 9:49
0x3c024-Jun-09 9:49 
QuestionHow To Transfer Parameters Through 2 Forms Pin
treuveni24-Jun-09 6:42
treuveni24-Jun-09 6:42 
AnswerRe: How To Transfer Parameters Through 2 Forms Pin
Manas Bhardwaj24-Jun-09 6:43
professionalManas Bhardwaj24-Jun-09 6:43 
GeneralRe: How To Transfer Parameters Through 2 Forms Pin
treuveni24-Jun-09 7:36
treuveni24-Jun-09 7:36 
AnswerRe: How To Transfer Parameters Through 2 Forms Pin
Giorgi Dalakishvili24-Jun-09 7:22
mentorGiorgi Dalakishvili24-Jun-09 7:22 
QuestionThe best way to achive this ? Pin
viralthebest24-Jun-09 6:40
viralthebest24-Jun-09 6:40 
AnswerRe: The best way to achive this ? Pin
Christian Graus24-Jun-09 10:38
protectorChristian Graus24-Jun-09 10:38 
QuestionProblems with System Tray Graph ? Pin
Rsesky00024-Jun-09 6:23
Rsesky00024-Jun-09 6:23 
AnswerRe: Problems with System Tray Graph ? Pin
OriginalGriff24-Jun-09 6:57
mveOriginalGriff24-Jun-09 6:57 

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.