Click here to Skip to main content
15,889,781 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Creating a class and assigning properties to it. Pin
#realJSOP23-Dec-09 21:56
mve#realJSOP23-Dec-09 21:56 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Darrall24-Dec-09 4:52
Darrall24-Dec-09 4:52 
AnswerRe: C# Creating a class and assigning properties to it. Pin
Richard MacCutchan23-Dec-09 22:28
mveRichard MacCutchan23-Dec-09 22:28 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Darrall24-Dec-09 4:59
Darrall24-Dec-09 4:59 
AnswerRe: C# Creating a class and assigning properties to it. Pin
hamed-vojdani24-Dec-09 5:27
hamed-vojdani24-Dec-09 5:27 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Darrall24-Dec-09 5:39
Darrall24-Dec-09 5:39 
QuestionCondense a list Pin
o m n i23-Dec-09 11:57
o m n i23-Dec-09 11:57 
AnswerRe: Condense a list Pin
Luc Pattyn23-Dec-09 12:07
sitebuilderLuc Pattyn23-Dec-09 12:07 
and is that a problem? There are many ways to do it:

1.
avoid duplicates from the start; that is the cheapest solution. See also (4)

2.
use two nested for loops, and merge entries with identical names (one gets the sum, the other gets removed)

3.
for better performance, you could sort the list on the name (this[^] may help), then do as in (2)

4.
create a new list which never holds any duplicates; the easiest way to do that is by using a Dictionary where name would be the key, and count the value.

You'll have to choose one and work out the details yourself.

Smile | :)

Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages


GeneralRe: Condense a list Pin
o m n i23-Dec-09 12:32
o m n i23-Dec-09 12:32 
QuestionGeneral issue: When application doesn't have focus, and you click a button on it, it doesn't register.... Pin
sherifffruitfly23-Dec-09 11:03
sherifffruitfly23-Dec-09 11:03 
AnswerRe: General issue: When application doesn't have focus, and you click a button on it, it doesn't register.... Pin
Ravi Bhavnani23-Dec-09 14:01
professionalRavi Bhavnani23-Dec-09 14:01 
QuestionReflection Get Access Modifier Pin
dataminers23-Dec-09 9:02
dataminers23-Dec-09 9:02 
AnswerRe: Reflection Get Access Modifier Pin
Luc Pattyn23-Dec-09 9:45
sitebuilderLuc Pattyn23-Dec-09 9:45 
GeneralRe: Reflection Get Access Modifier Pin
dataminers24-Dec-09 0:50
dataminers24-Dec-09 0:50 
Questioncan i dynamicly access object from name of object Pin
combo_ci23-Dec-09 6:20
combo_ci23-Dec-09 6:20 
AnswerRe: can i dynamicly access object from name of object Pin
Jordon4Kraftd23-Dec-09 10:13
Jordon4Kraftd23-Dec-09 10:13 
GeneralRe: can i dynamicly access object from name of object Pin
combo_ci23-Dec-09 18:49
combo_ci23-Dec-09 18:49 
GeneralRe: can i dynamicly access object from name of object Pin
Luc Pattyn24-Dec-09 0:48
sitebuilderLuc Pattyn24-Dec-09 0:48 
AnswerRe: can i dynamicly access object from name of object Pin
softty24-Dec-09 0:22
softty24-Dec-09 0:22 
QuestionHow to show all surfaces of a cube? Pin
whiteclouds23-Dec-09 4:48
whiteclouds23-Dec-09 4:48 
Questionhow to create 2 threads on on diferent procesors Pin
Renven23-Dec-09 3:29
Renven23-Dec-09 3:29 
AnswerRe: how to create 2 threads on on diferent procesors [modified] Pin
#realJSOP23-Dec-09 4:31
mve#realJSOP23-Dec-09 4:31 
GeneralRe: how to create 2 threads on on diferent procesors Pin
Ghydo23-Dec-09 4:39
Ghydo23-Dec-09 4:39 
GeneralRe: how to create 2 threads on on diferent procesors Pin
#realJSOP23-Dec-09 4:39
mve#realJSOP23-Dec-09 4:39 
GeneralRe: how to create 2 threads on on diferent procesors Pin
Ghydo23-Dec-09 4:47
Ghydo23-Dec-09 4:47 

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.