Click here to Skip to main content
15,887,365 members
Home / Discussions / C#
   

C#

 
AnswerRe: Form designer insisting on form being checked out [SOLUTION] Pin
Dan Neely7-Jul-09 4:16
Dan Neely7-Jul-09 4:16 
GeneralRe: Form designer insisting on form being checked out [SOLUTION] Pin
molesworth7-Jul-09 5:48
molesworth7-Jul-09 5:48 
GeneralRe: Form designer insisting on form being checked out [SOLUTION] Pin
Dan Neely7-Jul-09 7:17
Dan Neely7-Jul-09 7:17 
QuestionReading word document in asp.net Pin
Spurple7-Jul-09 1:44
Spurple7-Jul-09 1:44 
AnswerRe: Reading word document in asp.net Pin
Christian Graus7-Jul-09 1:46
protectorChristian Graus7-Jul-09 1:46 
Questionmerging byt[] in c# Pin
GauravKP7-Jul-09 1:42
professionalGauravKP7-Jul-09 1:42 
AnswerRe: merging byt[] in c# Pin
Christian Graus7-Jul-09 1:48
protectorChristian Graus7-Jul-09 1:48 
AnswerRe: merging byt[] in c# Pin
DaveyM697-Jul-09 1:56
professionalDaveyM697-Jul-09 1:56 
Array.Copy is what you need - something like
byte[] a = new byte[] { 0, 1, 2, 3 };
byte[] b = new byte[] { 4, 5, 6, 7 };
byte[] c = new byte[a.Length + b.Length];
Array.Copy(a, c, a.Length);
Array.Copy(b, 0, c, a.Length, b.Length);
foreach (byte item in c)
{
    Console.WriteLine(item);
}


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

Questiontic tak toe Pin
Mostafa&Messi7-Jul-09 0:46
Mostafa&Messi7-Jul-09 0:46 
GeneralRe: tic tak toe PinPopular
Pete O'Hanlon7-Jul-09 0:47
mvePete O'Hanlon7-Jul-09 0:47 
AnswerRe: tic tak toe Pin
Rajesh R Subramanian7-Jul-09 0:49
professionalRajesh R Subramanian7-Jul-09 0:49 
GeneralRe: tic tak toe Pin
OriginalGriff7-Jul-09 1:01
mveOriginalGriff7-Jul-09 1:01 
AnswerRe: tic tak toe PinPopular
Christian Graus7-Jul-09 1:08
protectorChristian Graus7-Jul-09 1:08 
GeneralRe: tic tak toe Pin
dan!sh 7-Jul-09 1:10
professional dan!sh 7-Jul-09 1:10 
GeneralRe: tic tak toe Pin
Pete O'Hanlon7-Jul-09 1:23
mvePete O'Hanlon7-Jul-09 1:23 
GeneralRe: tic tak toe Pin
Christian Graus7-Jul-09 1:34
protectorChristian Graus7-Jul-09 1:34 
AnswerRe: tic tak toe Pin
PIEBALDconsult7-Jul-09 4:08
mvePIEBALDconsult7-Jul-09 4:08 
AnswerRe: tic tak toe Pin
0x3c07-Jul-09 5:29
0x3c07-Jul-09 5:29 
AnswerRe: tic tak toe Pin
Huxley Stronghead9-Jul-09 5:08
Huxley Stronghead9-Jul-09 5:08 
QuestionHow to change the html text on fly? Pin
svt gdwl7-Jul-09 0:36
svt gdwl7-Jul-09 0:36 
AnswerRe: How to change the html text on fly? Pin
Christian Graus7-Jul-09 1:09
protectorChristian Graus7-Jul-09 1:09 
GeneralRe: How to change the html text on fly? Pin
svt gdwl7-Jul-09 1:18
svt gdwl7-Jul-09 1:18 
GeneralRe: How to change the html text on fly? Pin
Christian Graus7-Jul-09 1:22
protectorChristian Graus7-Jul-09 1:22 
GeneralRe: How to change the html text on fly? Pin
Eddy Vluggen7-Jul-09 1:36
professionalEddy Vluggen7-Jul-09 1:36 
QuestionIntermittent paint problem Pin
kanchoette7-Jul-09 0:32
kanchoette7-Jul-09 0:32 

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.