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

C#

 
AnswerRe: #using a C# dll Pin
Guffa22-Oct-05 19:02
Guffa22-Oct-05 19:02 
GeneralRe: #using a C# dll Pin
Joel Holdsworth22-Oct-05 22:54
Joel Holdsworth22-Oct-05 22:54 
GeneralRe: #using a C# dll Pin
Rob Graham23-Oct-05 5:52
Rob Graham23-Oct-05 5:52 
Questioncheckedlistbox and numericupdown Pin
Mridang Agarwalla22-Oct-05 10:32
Mridang Agarwalla22-Oct-05 10:32 
Questionduplicates in array Pin
Mridang Agarwalla22-Oct-05 10:14
Mridang Agarwalla22-Oct-05 10:14 
AnswerRe: duplicates in array Pin
turbochimp22-Oct-05 10:38
turbochimp22-Oct-05 10:38 
AnswerRe: duplicates in array Pin
Matt Gerrans22-Oct-05 19:57
Matt Gerrans22-Oct-05 19:57 
GeneralRe: duplicates in array Pin
Matt Gerrans22-Oct-05 20:24
Matt Gerrans22-Oct-05 20:24 
By the way, if you are using VS.NET 2005, you can create a more generic solution:
public T[] MergeArrays<T>( T[] A, T [] B)
{
    Dictionary<T,T> table = new Dictionary<T,T>();
    foreach (T item in A)
        table[item] = item;
    foreach (T item in B)
        table[item] = item;
    List<T> items = new List<T>(table.Keys);
    return items.ToArray();
}


Matt Gerrans

-- modified at 2:24 Sunday 23rd October, 2005

Frown | :( Generics syntax is a bit of a pain to mix with html (I didn't want to use the "Ignore HTML tags" option, because then I can't format the code)
QuestionHelp TreeView Pin
picasso222-Oct-05 9:31
picasso222-Oct-05 9:31 
AnswerRe: Help TreeView Pin
picasso222-Oct-05 10:29
picasso222-Oct-05 10:29 
Questionsyntax help Pin
tekken2222-Oct-05 9:21
tekken2222-Oct-05 9:21 
AnswerRe: syntax help Pin
Daniel Grunwald22-Oct-05 9:42
Daniel Grunwald22-Oct-05 9:42 
AnswerRe: syntax help Pin
User 167325222-Oct-05 21:47
User 167325222-Oct-05 21:47 
QuestionReset Panel Pin
picasso222-Oct-05 8:07
picasso222-Oct-05 8:07 
AnswerRe: Reset Panel Pin
Stefan Troschuetz22-Oct-05 8:30
Stefan Troschuetz22-Oct-05 8:30 
Questionwin32 API or DirectSound Pin
pakFari22-Oct-05 7:58
pakFari22-Oct-05 7:58 
AnswerRe: win32 API or DirectSound Pin
André Ziegler22-Oct-05 9:00
André Ziegler22-Oct-05 9:00 
GeneralRe: win32 API or DirectSound Pin
pakFari22-Oct-05 18:29
pakFari22-Oct-05 18:29 
GeneralRe: win32 API or DirectSound Pin
André Ziegler23-Oct-05 5:07
André Ziegler23-Oct-05 5:07 
GeneralRe: win32 API or DirectSound Pin
pakFari23-Oct-05 7:58
pakFari23-Oct-05 7:58 
GeneralRe: win32 API or DirectSound Pin
André Ziegler23-Oct-05 11:16
André Ziegler23-Oct-05 11:16 
GeneralRe: win32 API or DirectSound Pin
pakFari23-Oct-05 16:56
pakFari23-Oct-05 16:56 
GeneralRe: win32 API or DirectSound Pin
André Ziegler24-Oct-05 12:26
André Ziegler24-Oct-05 12:26 
QuestionUsing C++ class in C# project Pin
patgo22-Oct-05 7:42
patgo22-Oct-05 7:42 
AnswerRe: Using C++ class in C# project Pin
S. Senthil Kumar23-Oct-05 2:25
S. Senthil Kumar23-Oct-05 2:25 

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.