Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do I get a pointer to a C# function? Pin
MattPlusJC26-Mar-07 12:46
MattPlusJC26-Mar-07 12:46 
AnswerRe: How do I get a pointer to a C# function? Pin
Luc Pattyn27-Mar-07 13:42
sitebuilderLuc Pattyn27-Mar-07 13:42 
QuestionC# and convenient string parsing for '\r\n' Pin
LCI26-Mar-07 8:25
LCI26-Mar-07 8:25 
AnswerRe: C# and convenient string parsing for '\r\n' Pin
Judah Gabriel Himango26-Mar-07 8:38
sponsorJudah Gabriel Himango26-Mar-07 8:38 
GeneralRe: C# and convenient string parsing for '\r\n' Pin
LCI26-Mar-07 8:43
LCI26-Mar-07 8:43 
GeneralRe: C# and convenient string parsing for '\r\n' Pin
Judah Gabriel Himango26-Mar-07 9:00
sponsorJudah Gabriel Himango26-Mar-07 9:00 
AnswerRe: C# and convenient string parsing for '\r\n' Pin
Guffa26-Mar-07 10:21
Guffa26-Mar-07 10:21 
AnswerRe: C# and convenient string parsing for '\r\n' Pin
Guffa26-Mar-07 10:23
Guffa26-Mar-07 10:23 
As an alternative to splitting, you can create a StringReader that uses the string, and use the ReadLine method to read one line at a time.

using (StringReader reader = new StringReader(theString)) {
   string line;
   while ((line = reader.ReadLine()) != null) {
      // do something with the line
   }
}


---
single minded; short sighted; long gone;

Questionhow can I prevent my application to be view in hexaViewers? Pin
NiZaR.TecH26-Mar-07 8:03
NiZaR.TecH26-Mar-07 8:03 
AnswerRe: how can I prevent my application to be view in hexaViewers? Pin
Christian Graus26-Mar-07 8:06
protectorChristian Graus26-Mar-07 8:06 
GeneralRe: how can I prevent my application to be view in hexaViewers? Pin
NiZaR.TecH26-Mar-07 8:09
NiZaR.TecH26-Mar-07 8:09 
GeneralRe: how can I prevent my application to be view in hexaViewers? Pin
Christian Graus26-Mar-07 8:38
protectorChristian Graus26-Mar-07 8:38 
GeneralRe: how can I prevent my application to be view in hexaViewers? Pin
Dan Neely26-Mar-07 8:10
Dan Neely26-Mar-07 8:10 
AnswerNO GUYZ ... my app is already .exe ... !! Pin
NiZaR.TecH26-Mar-07 8:42
NiZaR.TecH26-Mar-07 8:42 
GeneralRe: NO GUYZ ... my app is already .exe ... !! Pin
Dan Neely26-Mar-07 9:15
Dan Neely26-Mar-07 9:15 
GeneralRe: NO GUYZ ... my app is already .exe ... !! Pin
NiZaR.TecH26-Mar-07 9:19
NiZaR.TecH26-Mar-07 9:19 
GeneralRe: NO GUYZ ... my app is already .exe ... !! Pin
Christian Graus26-Mar-07 10:24
protectorChristian Graus26-Mar-07 10:24 
GeneralRe: NO GUYZ ... my app is already .exe ... !! Pin
Dan Neely26-Mar-07 11:01
Dan Neely26-Mar-07 11:01 
AnswerWell Pin
Ennis Ray Lynch, Jr.26-Mar-07 9:28
Ennis Ray Lynch, Jr.26-Mar-07 9:28 
GeneralRe: Well Pin
NiZaR.TecH26-Mar-07 10:18
NiZaR.TecH26-Mar-07 10:18 
GeneralRe: Well Pin
Christian Graus26-Mar-07 10:22
protectorChristian Graus26-Mar-07 10:22 
GeneralRe: Well Pin
Dan Neely26-Mar-07 11:00
Dan Neely26-Mar-07 11:00 
QuestionSpeech Recognition Problem? [modified] Pin
Khoramdin26-Mar-07 7:39
Khoramdin26-Mar-07 7:39 
AnswerRe: Speech Recognition Problem? Pin
Judah Gabriel Himango26-Mar-07 8:46
sponsorJudah Gabriel Himango26-Mar-07 8:46 
QuestionPaint Event - Error Pin
laura131626-Mar-07 7:08
laura131626-Mar-07 7: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.