Click here to Skip to main content
15,900,511 members
Home / Discussions / C#
   

C#

 
GeneralCall for help - Re: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 14:01
James T. Johnson6-Jun-02 14:01 
GeneralRe: Call for help - Re: Preserving thumbnail metadata Pin
dsweet6-Jun-02 14:22
dsweet6-Jun-02 14:22 
GeneralRe: Call for help - Re: Preserving thumbnail metadata Pin
dsweet7-Jun-02 7:13
dsweet7-Jun-02 7:13 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson10-Jun-02 8:58
James T. Johnson10-Jun-02 8:58 
GeneralRe: Preserving thumbnail metadata Pin
dsweet11-Jun-02 4:12
dsweet11-Jun-02 4:12 
GeneralConverting from DateTime to UInt32 and back Pin
5-Jun-02 5:19
suss5-Jun-02 5:19 
GeneralFile Read in C# Pin
Member 169775-Jun-02 1:33
Member 169775-Jun-02 1:33 
GeneralRe: File Read in C# Pin
Mazdak5-Jun-02 2:32
Mazdak5-Jun-02 2:32 
I've not test this,but I think thats what you want.(its from MSDN)

StreamReader srReadLine = new StreamReader(
   (System.IO.Stream)File.OpenRead("C:\\Temp\\Test.txt"),
System.Text.Encoding.ASCII);
srReadLine.BaseStream.Seek(0, SeekOrigin.Begin);
while (srReadLine.Peek() > -1) {
   Console.WriteLine(srReadLine.ReadLine());
}
srReadLine.Close();


Mazy

"The more I search, the more my need
For you,
The more I bless, the more I bleed
For you."The Outlaw Torn-Metallica

GeneralRe: File Read in C# Pin
Rickard Andersson205-Jun-02 2:47
Rickard Andersson205-Jun-02 2:47 
GeneralRe: File Read in C# Pin
Daniel Turini5-Jun-02 15:10
Daniel Turini5-Jun-02 15:10 
GeneralRe: File Read in C# Pin
Rickard Andersson205-Jun-02 21:35
Rickard Andersson205-Jun-02 21:35 
GeneralRe: File Read in C# Pin
Daniel Turini5-Jun-02 22:33
Daniel Turini5-Jun-02 22:33 
GeneralRe: File Read in C# Pin
Rickard Andersson205-Jun-02 22:57
Rickard Andersson205-Jun-02 22:57 
GeneralRe: File Read in C# Pin
Daniel Turini6-Jun-02 0:35
Daniel Turini6-Jun-02 0:35 
GeneralRe: File Read in C# Pin
Rickard Andersson206-Jun-02 1:09
Rickard Andersson206-Jun-02 1:09 
Generalundeclared identifier Pin
big papa4-Jun-02 9:26
big papa4-Jun-02 9:26 
GeneralRe: undeclared identifier Pin
Anders Molin4-Jun-02 9:36
professionalAnders Molin4-Jun-02 9:36 
GeneralArray conversions Pin
Fayez Al-Naddaf4-Jun-02 8:31
Fayez Al-Naddaf4-Jun-02 8:31 
GeneralRe: Array conversions Pin
Nick Parker4-Jun-02 9:44
protectorNick Parker4-Jun-02 9:44 
GeneralRe: Array conversions Pin
Fayez Al-Naddaf4-Jun-02 9:56
Fayez Al-Naddaf4-Jun-02 9:56 
GeneralRe: Array conversions Pin
Nick Parker4-Jun-02 9:57
protectorNick Parker4-Jun-02 9:57 
GeneralRe: Array conversions Pin
James T. Johnson4-Jun-02 15:36
James T. Johnson4-Jun-02 15:36 
GeneralRe: Array conversions Pin
Fayez Al-Naddaf6-Jun-02 9:50
Fayez Al-Naddaf6-Jun-02 9:50 
Generalchoose directory dialog Pin
ygxdha4-Jun-02 6:43
ygxdha4-Jun-02 6:43 
GeneralDirectory List Box Pin
4-Jun-02 3:42
suss4-Jun-02 3:42 

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.