Click here to Skip to main content
15,888,461 members
Home / Discussions / C#
   

C#

 
GeneralRe: all C# user read ^_^ a windows made for C# programmers Plus a funny joke about C#n00b for everybody Pin
CWIZO16-Feb-04 8:21
CWIZO16-Feb-04 8:21 
GeneralSingle/Double.ToString() help Pin
Verdant12315-Feb-04 16:53
Verdant12315-Feb-04 16:53 
GeneralRe: Single/Double.ToString() help Pin
Werdna15-Feb-04 20:21
Werdna15-Feb-04 20:21 
GeneralRe: Single/Double.ToString() help Pin
Heath Stewart16-Feb-04 5:55
protectorHeath Stewart16-Feb-04 5:55 
GeneralFree C# Training Pin
Tony M John15-Feb-04 15:07
Tony M John15-Feb-04 15:07 
GeneralRe: Free C# Training Pin
Anonymous16-Feb-04 15:08
Anonymous16-Feb-04 15:08 
GeneralParsing Tab Delimited File Pin
Verdant12315-Feb-04 14:05
Verdant12315-Feb-04 14:05 
GeneralRe: Parsing Tab Delimited File Pin
Colin Angus Mackay15-Feb-04 14:24
Colin Angus Mackay15-Feb-04 14:24 
The first obviouse thing is:
while (html_sr.Peek() >=0)
{
txt_file = html_sr.ReadLine();


Why not use:
while((txt_file = html_sr.ReadLine()) != null)
{
    // Do stuff...
}


Now, you no longer have to perform the peek operation and your test is against a value you would get anyway. (Since the RealLine method already performs some operation to determine whether it is at the EOF why duplicate the effort)



EuroCPian Spring 2004 Get Together[^]
"You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar
"Get in touch with your Inner Capitalist - I wish you much success!" -- Christopher Duncan, Lounge 9-Feb-2004


GeneralRe: Parsing Tab Delimited File Pin
Verdant12315-Feb-04 14:51
Verdant12315-Feb-04 14:51 
GeneralRe: Parsing Tab Delimited File Pin
Werdna15-Feb-04 16:45
Werdna15-Feb-04 16:45 
GeneralRe: Parsing Tab Delimited File Pin
Verdant12315-Feb-04 16:47
Verdant12315-Feb-04 16:47 
GeneralRe: Parsing Tab Delimited File Pin
Daniel Turini16-Feb-04 1:59
Daniel Turini16-Feb-04 1:59 
GeneralRe: Parsing Tab Delimited File Pin
Verdant12316-Feb-04 7:55
Verdant12316-Feb-04 7:55 
Questionhow to restrict appearance of child forms Pin
visiontec15-Feb-04 13:29
visiontec15-Feb-04 13:29 
AnswerRe: how to restrict appearance of child forms Pin
Colin Angus Mackay15-Feb-04 14:40
Colin Angus Mackay15-Feb-04 14:40 
GeneralTab Pages Navigation Pin
visiontec15-Feb-04 12:58
visiontec15-Feb-04 12:58 
GeneralRe: Tab Pages Navigation Pin
Heath Stewart16-Feb-04 5:48
protectorHeath Stewart16-Feb-04 5:48 
QuestionRemoting? Pin
Kevin Tambascio15-Feb-04 12:39
Kevin Tambascio15-Feb-04 12:39 
AnswerRe: Remoting? Pin
Marc Clifton15-Feb-04 15:42
mvaMarc Clifton15-Feb-04 15:42 
GeneralRe: Remoting? Pin
Kevin Tambascio16-Feb-04 3:09
Kevin Tambascio16-Feb-04 3:09 
GeneralRe: Remoting? Pin
Marc Clifton16-Feb-04 9:29
mvaMarc Clifton16-Feb-04 9:29 
GeneralRe: Remoting? Pin
Kevin Tambascio16-Feb-04 16:29
Kevin Tambascio16-Feb-04 16:29 
Generalneed urgent help with CSIDL_HISTORY Pin
Lesuran15-Feb-04 4:01
Lesuran15-Feb-04 4:01 
GeneralRe: need urgent help with CSIDL_HISTORY Pin
Heath Stewart16-Feb-04 5:46
protectorHeath Stewart16-Feb-04 5:46 
GenerallistView items icons Pin
morgan3715-Feb-04 3:39
morgan3715-Feb-04 3:39 

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.