Click here to Skip to main content
15,919,613 members
Home / Discussions / C#
   

C#

 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 17:53
tatchung12-Jul-05 17:53 
GeneralRe: Save as "TXT" File Pin
Christian Graus12-Jul-05 17:55
protectorChristian Graus12-Jul-05 17:55 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 18:03
tatchung12-Jul-05 18:03 
GeneralRe: Save as "TXT" File Pin
Christian Graus12-Jul-05 18:12
protectorChristian Graus12-Jul-05 18:12 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 18:23
tatchung12-Jul-05 18:23 
GeneralRe: Save as "TXT" File Pin
Christian Graus12-Jul-05 18:27
protectorChristian Graus12-Jul-05 18:27 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 18:34
tatchung12-Jul-05 18:34 
GeneralRe: Save as "TXT" File Pin
Christian Graus12-Jul-05 18:43
protectorChristian Graus12-Jul-05 18:43 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 18:50
tatchung12-Jul-05 18:50 
GeneralRe: Save as "TXT" File Pin
Luis Alonso Ramos13-Jul-05 6:36
Luis Alonso Ramos13-Jul-05 6:36 
GeneralRe: Save as "TXT" File Pin
Sau Fan Lee12-Jul-05 18:27
Sau Fan Lee12-Jul-05 18:27 
GeneralRe: Save as "TXT" File Pin
Expert Coming12-Jul-05 18:53
Expert Coming12-Jul-05 18:53 
GeneralRe: Save as "TXT" File Pin
tatchung12-Jul-05 21:44
tatchung12-Jul-05 21:44 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:48
Tejas_Bit12-Jul-05 21:48 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:31
Tejas_Bit12-Jul-05 21:31 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:48
Tejas_Bit12-Jul-05 21:48 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:47
Tejas_Bit12-Jul-05 21:47 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:30
Tejas_Bit12-Jul-05 21:30 
GeneralRe: Save as "TXT" File Pin
Tejas_Bit12-Jul-05 21:49
Tejas_Bit12-Jul-05 21:49 
Generalclearing a variable: Gauss Ellimination Pin
amitmohanty12-Jul-05 15:38
amitmohanty12-Jul-05 15:38 
GeneralRe: clearing a variable: Gauss Ellimination Pin
Christian Graus12-Jul-05 17:29
protectorChristian Graus12-Jul-05 17:29 
GeneralRe: clearing a variable: Gauss Ellimination Pin
DavidNohejl13-Jul-05 2:31
DavidNohejl13-Jul-05 2:31 
GeneralFileStream isn't Binary Pin
Expert Coming12-Jul-05 14:56
Expert Coming12-Jul-05 14:56 
GeneralRe: FileStream isn't Binary Pin
Sau Fan Lee12-Jul-05 15:10
Sau Fan Lee12-Jul-05 15:10 
The FileStream class is binary, and it uses bytes to achieve that.

I think what you are looking for is a bit-stream class. Remember, the smallest unit for files are bytes, not bits (ie. You cannot have a file with, say, 4 bits, or 0.5 bytes). Therefore, FileStream works on binary bytes. As far as I know, System.IO does not provide a bit-stream class, so you may have to create your own wrapper class over an existing byte-stream class.




> whoami
The system is unable to identify you when you don't even know your name!
GeneralRe: FileStream isn't Binary Pin
Expert Coming12-Jul-05 15:16
Expert Coming12-Jul-05 15:16 

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.