Click here to Skip to main content
15,890,882 members
Home / Discussions / C#
   

C#

 
GeneralRe: Merge cells in word 2003 Pin
Larza12315-Jul-07 23:56
Larza12315-Jul-07 23:56 
AnswerRe: Merge cells in word 2003 Pin
wowo60823-Apr-09 0:07
wowo60823-Apr-09 0:07 
Questionprinting html file without printdialog show up Pin
pnpfriend8-Jun-07 9:16
pnpfriend8-Jun-07 9:16 
AnswerRe: printing html file without printdialog show up Pin
turbochimp9-Jun-07 6:42
turbochimp9-Jun-07 6:42 
QuestionDirectSound with not ending stream Pin
Dirk Reske8-Jun-07 8:52
Dirk Reske8-Jun-07 8:52 
AnswerRe: DirectSound with not ending stream Pin
Leslie Sanford8-Jun-07 16:45
Leslie Sanford8-Jun-07 16:45 
QuestionHow can I remove the repeated items from an Array? Pin
Khoramdin8-Jun-07 7:19
Khoramdin8-Jun-07 7:19 
AnswerRe: How can I remove the repeated items from an Array? [modified] Pin
eggsovereasy8-Jun-07 7:37
eggsovereasy8-Jun-07 7:37 
Just off the top of my head... this seems good, it's O(n)

<font>public datatype[] UnduplicateArray(datatype[] startarray)
{
  List<datatype> endarray = new List<datatype>();

  foreach (datatype d in startarray)
    if (!endarray.Contains(d))
      endarray.Add(d);
  
  return endarray.ToArray();
}
</datatype></datatype></font>


Last modified: 1hr 31mins after originally posted --



GeneralRe: How can I remove the repeated items from an Array? Pin
Guffa8-Jun-07 10:22
Guffa8-Jun-07 10:22 
GeneralRe: How can I remove the repeated items from an Array? Pin
eggsovereasy8-Jun-07 11:02
eggsovereasy8-Jun-07 11:02 
AnswerRe: How can I remove the repeated items from an Array? Pin
Judah Gabriel Himango8-Jun-07 7:44
sponsorJudah Gabriel Himango8-Jun-07 7:44 
GeneralRe: How can I remove the repeated items from an Array? Pin
eggsovereasy8-Jun-07 9:10
eggsovereasy8-Jun-07 9:10 
GeneralRe: How can I remove the repeated items from an Array? Pin
S. Senthil Kumar9-Jun-07 5:49
S. Senthil Kumar9-Jun-07 5:49 
GeneralRe: How can I remove the repeated items from an Array? Pin
Judah Gabriel Himango10-Jun-07 8:06
sponsorJudah Gabriel Himango10-Jun-07 8:06 
QuestionCheck XML Document for Well Formness Pin
Ronakkumar Patel8-Jun-07 6:02
Ronakkumar Patel8-Jun-07 6:02 
QuestionWebClient with Credentials.. Pin
Ronakkumar Patel8-Jun-07 6:00
Ronakkumar Patel8-Jun-07 6:00 
QuestionHow to block cookies during HTTP Get or Post operation Pin
Ronakkumar Patel8-Jun-07 5:59
Ronakkumar Patel8-Jun-07 5:59 
QuestionGet list of exported functions from Unmanaged DLL Pin
Ronakkumar Patel8-Jun-07 5:57
Ronakkumar Patel8-Jun-07 5:57 
QuestionAlternative to Socket? Pin
Hamed Musavi8-Jun-07 5:50
Hamed Musavi8-Jun-07 5:50 
AnswerRe: Alternative to Socket? Pin
Not Active8-Jun-07 5:55
mentorNot Active8-Jun-07 5:55 
GeneralRe: Alternative to Socket? Pin
Hamed Musavi8-Jun-07 6:19
Hamed Musavi8-Jun-07 6:19 
AnswerRe: Alternative to Socket? Pin
Judah Gabriel Himango8-Jun-07 6:00
sponsorJudah Gabriel Himango8-Jun-07 6:00 
GeneralRe: Alternative to Socket? Pin
Hamed Musavi8-Jun-07 6:16
Hamed Musavi8-Jun-07 6:16 
QuestionIs WebProxy class only support HTTP proxy type? Pin
Ronakkumar Patel8-Jun-07 5:50
Ronakkumar Patel8-Jun-07 5:50 
QuestionImage's path Pin
Nine_8-Jun-07 4:34
Nine_8-Jun-07 4:34 

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.