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

C#

 
AnswerRe: Read Large File Pin
Guffa9-Aug-08 22:23
Guffa9-Aug-08 22:23 
GeneralRe: Read Large File Pin
Reza Shojaee9-Aug-08 23:25
Reza Shojaee9-Aug-08 23:25 
GeneralRe: Read Large File Pin
User 665810-Aug-08 0:22
User 665810-Aug-08 0:22 
GeneralRe: Read Large File Pin
#realJSOP10-Aug-08 1:08
mve#realJSOP10-Aug-08 1:08 
GeneralRe: Read Large File Pin
Guffa10-Aug-08 6:55
Guffa10-Aug-08 6:55 
AnswerRe: Read Large File [modified] Pin
#realJSOP10-Aug-08 1:16
mve#realJSOP10-Aug-08 1:16 
AnswerRe: Read Large File Pin
Reza Shojaee10-Aug-08 2:11
Reza Shojaee10-Aug-08 2:11 
GeneralRe: Read Large File Pin
Mohammad Dayyan10-Aug-08 4:25
Mohammad Dayyan10-Aug-08 4:25 
Also you can use this :

List<string> list = new List<string>();
using (StreamReader sr = new StreamReader(openFileDialog1.FileName))
{
      //Read lines
      while (sr.Peek() >= 0)
         list.Add(sr.ReadLine());
}

GeneralRe: Read Large File Pin
Guffa10-Aug-08 6:53
Guffa10-Aug-08 6:53 
GeneralRe: Read Large File Pin
Mohammad Dayyan10-Aug-08 9:22
Mohammad Dayyan10-Aug-08 9:22 
AnswerRe: Read Large File Pin
PIEBALDconsult10-Aug-08 7:21
mvePIEBALDconsult10-Aug-08 7:21 
QuestionIs possible to create WinForm into the HTML tags ? Pin
Mohammad Dayyan9-Aug-08 13:00
Mohammad Dayyan9-Aug-08 13:00 
AnswerRe: Is possible to create WinForm into the HTML tags ? Pin
Colin Angus Mackay9-Aug-08 13:46
Colin Angus Mackay9-Aug-08 13:46 
AnswerRe: Is possible to create WinForm into the HTML tags ? Pin
Christian Graus9-Aug-08 16:23
protectorChristian Graus9-Aug-08 16:23 
QuestionMDI Parent Pin
csetopper_bhanu9-Aug-08 9:17
csetopper_bhanu9-Aug-08 9:17 
AnswerRe: MDI Parent Pin
dan!sh 9-Aug-08 9:32
professional dan!sh 9-Aug-08 9:32 
AnswerRe: MDI Parent Pin
dan!sh 9-Aug-08 9:36
professional dan!sh 9-Aug-08 9:36 
QuestionMDI Parent Pin
csetopper_bhanu9-Aug-08 9:08
csetopper_bhanu9-Aug-08 9:08 
AnswerRe: MDI Parent Pin
dan!sh 9-Aug-08 9:37
professional dan!sh 9-Aug-08 9:37 
AnswerRe: MDI Parent Pin
Gareth H9-Aug-08 21:28
Gareth H9-Aug-08 21:28 
Questionright click for multi shapes on picturBox Pin
Member 47164359-Aug-08 7:55
Member 47164359-Aug-08 7:55 
AnswerRe: right click for multi shapes on picturBox Pin
Christian Graus9-Aug-08 16:24
protectorChristian Graus9-Aug-08 16:24 
QuestionHow to access the explicit interface implementation of a base class from a dervied class ? Pin
MarkPhB9-Aug-08 6:05
MarkPhB9-Aug-08 6:05 
AnswerRe: How to access the explicit interface implementation of a base class from a dervied class ? Pin
Frank Horn9-Aug-08 6:36
Frank Horn9-Aug-08 6:36 
GeneralRe: How to access the explicit interface implementation of a base class from a dervied class ? Pin
MarkPhB9-Aug-08 7:07
MarkPhB9-Aug-08 7:07 

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.