Click here to Skip to main content
15,905,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Darrall24-Dec-09 4:26
Darrall24-Dec-09 4:26 
AnswerRe: C# Creating a class and assigning properties to it. Pin
#realJSOP23-Dec-09 21:56
professional#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 
I have a list of a custom type that contains 2 variables. One is name, the other is count. What is the general idea of what I need to do in order to condense this into a list with no duplicates where the counts of duplicate names are added together?

(eg. A list with 3 carls, 2 carls, 1 eric, 1 alex and 1 eric should condense to 5 carls, 2 ercis, 1 alex)

An example of the class the list would be populated with:
public class Person
    {
        private string _name;

        public string PersonName
        {
            get {return _name;}
            set { _name = value;}
        }

        private int _count;

        public int PersonCount
        {
            get { return _count; }
            set { _count = value; }
        }

        public Person(string name, int count)
        {
            _count = count;
            _name = name;
        }

    }

AnswerRe: Condense a list Pin
Luc Pattyn23-Dec-09 12:07
sitebuilderLuc Pattyn23-Dec-09 12:07 
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
professional#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
professional#realJSOP23-Dec-09 4:39 

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.