Click here to Skip to main content
15,911,715 members
Home / Discussions / C#
   

C#

 
GeneralRe: Install build fail Pin
Dave Kreskowiak1-Mar-10 1:58
mveDave Kreskowiak1-Mar-10 1:58 
AnswerRe: Install build fail Pin
Pete O'Hanlon1-Mar-10 1:51
mvePete O'Hanlon1-Mar-10 1:51 
Questionconvert string to Binary File Pin
mohamed antar28-Feb-10 23:03
mohamed antar28-Feb-10 23:03 
AnswerRe: convert string to Binary File Pin
Saksida Bojan28-Feb-10 23:20
Saksida Bojan28-Feb-10 23:20 
GeneralRe: convert string to Binary File Pin
mohamed antar28-Feb-10 23:23
mohamed antar28-Feb-10 23:23 
GeneralRe: convert string to Binary File Pin
Saksida Bojan28-Feb-10 23:32
Saksida Bojan28-Feb-10 23:32 
GeneralRe: convert string to Binary File Pin
mohamed antar28-Feb-10 23:49
mohamed antar28-Feb-10 23:49 
GeneralRe: convert string to Binary File Pin
Saksida Bojan1-Mar-10 0:40
Saksida Bojan1-Mar-10 0:40 
mohamed antar wrote:
i convert string ti byte[] and write it still get the string as normal text .

Of course it is behaving that whay. You need to write each byte manualy. You can't easly convert string to binary format.

example:
FileStream stream = new FileStream("C:\\mysecretfile.mms", FileMode.Create);   
BinaryWriter w = new BinaryWriter(stream);   
w.Write(new bytes[]{0x42, 0x49, 0x4B, 0x69, 0xED, 0x47});   // This is the beggining of a bik video file.
w.Close();

GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 0:52
mohamed antar1-Mar-10 0:52 
GeneralRe: convert string to Binary File Pin
Saksida Bojan1-Mar-10 1:01
Saksida Bojan1-Mar-10 1:01 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 1:20
mohamed antar1-Mar-10 1:20 
GeneralRe: convert string to Binary File Pin
Saksida Bojan1-Mar-10 1:26
Saksida Bojan1-Mar-10 1:26 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 1:27
mohamed antar1-Mar-10 1:27 
GeneralRe: convert string to Binary File Pin
Saksida Bojan1-Mar-10 1:30
Saksida Bojan1-Mar-10 1:30 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 1:31
mohamed antar1-Mar-10 1:31 
GeneralRe: convert string to Binary File Pin
Saksida Bojan1-Mar-10 1:37
Saksida Bojan1-Mar-10 1:37 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 6:33
mohamed antar1-Mar-10 6:33 
AnswerMessage Closed Pin
28-Feb-10 23:35
stancrm28-Feb-10 23:35 
GeneralRe: convert string to Binary File Pin
mohamed antar28-Feb-10 23:38
mohamed antar28-Feb-10 23:38 
GeneralMessage Closed Pin
1-Mar-10 1:09
stancrm1-Mar-10 1:09 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 1:18
mohamed antar1-Mar-10 1:18 
GeneralMessage Closed Pin
1-Mar-10 1:29
stancrm1-Mar-10 1:29 
GeneralRe: convert string to Binary File Pin
mohamed antar1-Mar-10 6:33
mohamed antar1-Mar-10 6:33 
QuestionListView Label Edit help ? Pin
Nematjon Rahmanov28-Feb-10 23:03
Nematjon Rahmanov28-Feb-10 23:03 
AnswerRe: ListView Label Edit help ? Pin
Mycroft Holmes1-Mar-10 0:01
professionalMycroft Holmes1-Mar-10 0:01 

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.