Click here to Skip to main content
15,914,221 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to convert ascii to char Pin
Parwej Ahamad1-Feb-07 22:56
professionalParwej Ahamad1-Feb-07 22:56 
GeneralRe: How to convert ascii to char Pin
aSarafian2-Feb-07 2:22
aSarafian2-Feb-07 2:22 
Questionbindinglist Problem Pin
mark_w_1-Feb-07 22:45
mark_w_1-Feb-07 22:45 
QuestionHow to create SSIS package for Flat file to Destination DB Pin
NK71-Feb-07 22:44
NK71-Feb-07 22:44 
QuestionWindows Service that runs on test pc but not on product pc! Pin
Gajolsen1-Feb-07 22:43
Gajolsen1-Feb-07 22:43 
Questionhow to convert a short array to a byte array? Pin
bouli1-Feb-07 22:26
bouli1-Feb-07 22:26 
AnswerRe: how to convert a short array to a byte array? Pin
Stefan Troschuetz1-Feb-07 22:31
Stefan Troschuetz1-Feb-07 22:31 
AnswerRe: how to convert a short array to a byte array? Pin
J. Dunlap1-Feb-07 22:38
J. Dunlap1-Feb-07 22:38 
Sounds like Buffer.BlockCopy() is what you need. Each short value will be split in half to become 2 byte values in the byte array.
//'values' is the name of the array of short values
byte[] buffer=new byte[values.Length*2];
Buffer.BlockCopy(values,0,buffer,0,buffer.Length);
//'buffer' now holds the short values as bytes



QuestionCOM event handling without TypeLIB Pin
Aleksey.Andreev1-Feb-07 21:49
Aleksey.Andreev1-Feb-07 21:49 
QuestionNunit and internal modifier Pin
Russell Jones1-Feb-07 21:49
Russell Jones1-Feb-07 21:49 
AnswerRe: Nunit and internal modifier Pin
S. Senthil Kumar2-Feb-07 6:20
S. Senthil Kumar2-Feb-07 6:20 
QuestionUsing Class Libraries-Few Problems Pin
adnanrafiq1-Feb-07 21:16
adnanrafiq1-Feb-07 21:16 
QuestionHow do I convert string to double Pin
acodman1-Feb-07 21:03
acodman1-Feb-07 21:03 
AnswerRe: How do I convert string to double Pin
mihksoft1-Feb-07 21:09
mihksoft1-Feb-07 21:09 
GeneralRe: How do I convert string to double Pin
acodman1-Feb-07 21:24
acodman1-Feb-07 21:24 
AnswerRe: How do I convert string to double Pin
Stefan Troschuetz1-Feb-07 21:10
Stefan Troschuetz1-Feb-07 21:10 
AnswerRe: How do I convert string to double Pin
cppShooter1-Feb-07 21:32
cppShooter1-Feb-07 21:32 
AnswerRe: How do I convert string to double Pin
cppShooter1-Feb-07 21:32
cppShooter1-Feb-07 21:32 
AnswerRe: How do I convert string to double Pin
blackjack21502-Feb-07 0:19
blackjack21502-Feb-07 0:19 
GeneralRe: How do I convert string to double Pin
Russell Jones2-Feb-07 0:43
Russell Jones2-Feb-07 0:43 
Questionserialization Pin
mihksoft1-Feb-07 20:50
mihksoft1-Feb-07 20:50 
AnswerRe: serialization Pin
mark_w_1-Feb-07 22:49
mark_w_1-Feb-07 22:49 
Questionworking with datetime Pin
quiteSmart1-Feb-07 20:14
quiteSmart1-Feb-07 20:14 
AnswerRe: working with datetime Pin
Christian Graus1-Feb-07 20:22
protectorChristian Graus1-Feb-07 20:22 
Answera solution: Pin
cppShooter1-Feb-07 21:10
cppShooter1-Feb-07 21:10 

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.