Click here to Skip to main content
15,918,333 members
Home / Discussions / C#
   

C#

 
AnswerRe: OnPaint Pin
musefan7-Jul-09 2:38
musefan7-Jul-09 2:38 
Questionhow to create XML using DataSet having more then one table? Pin
Sasmi_Office7-Jul-09 2:17
Sasmi_Office7-Jul-09 2:17 
AnswerRe: how to create XML using DataSet having more then one table? Pin
Dave Kreskowiak7-Jul-09 3:42
mveDave Kreskowiak7-Jul-09 3:42 
QuestionForm designer insisting on form being checked out Pin
Dan Neely7-Jul-09 2:11
Dan Neely7-Jul-09 2:11 
AnswerRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 2:20
molesworth7-Jul-09 2:20 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 2:31
Dan Neely7-Jul-09 2:31 
GeneralRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 2:41
molesworth7-Jul-09 2:41 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 3:17
Dan Neely7-Jul-09 3:17 
AnswerRe: Form designer insisting on form being checked out Pin
Christian Graus7-Jul-09 2:39
protectorChristian Graus7-Jul-09 2:39 
GeneralRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 2:49
molesworth7-Jul-09 2:49 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 3:06
Dan Neely7-Jul-09 3:06 
GeneralRe: Form designer insisting on form being checked out Pin
molesworth7-Jul-09 3:41
molesworth7-Jul-09 3:41 
GeneralRe: Form designer insisting on form being checked out Pin
Dan Neely7-Jul-09 4:12
Dan Neely7-Jul-09 4:12 
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 

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.