Click here to Skip to main content
15,922,574 members
Home / Discussions / C#
   

C#

 
AnswerRe: wav Pin
LimitedAtonement24-Dec-09 4:32
LimitedAtonement24-Dec-09 4:32 
QuestionReplacing backslahes in a string Pin
Danpeking24-Dec-09 2:57
Danpeking24-Dec-09 2:57 
AnswerRe: Replacing backslahes in a string Pin
Danpeking24-Dec-09 3:03
Danpeking24-Dec-09 3:03 
GeneralRe: Replacing backslahes in a string Pin
Saksida Bojan24-Dec-09 3:55
Saksida Bojan24-Dec-09 3:55 
Questionpassing parameters from crystal report to windows form Pin
Nitin S24-Dec-09 1:11
professionalNitin S24-Dec-09 1:11 
Generalcoding of IPsec functionality Pin
3bood.ghzawi24-Dec-09 0:00
3bood.ghzawi24-Dec-09 0:00 
QuestionCREATE DATABASE permission denied in database 'master' Pin
haleemasher23-Dec-09 19:39
haleemasher23-Dec-09 19:39 
AnswerRe: CREATE DATABASE permission denied in database 'master' Pin
Russ-T23-Dec-09 20:24
Russ-T23-Dec-09 20:24 
Questiondraw rich text in a custom control Pin
Duong Tien Nam23-Dec-09 16:11
Duong Tien Nam23-Dec-09 16:11 
AnswerRe: draw rich text in a custom control Pin
Jimmanuel24-Dec-09 2:25
Jimmanuel24-Dec-09 2:25 
QuestionC# TripleDES and Perl CPAN:Crypt Pin
draskosaric23-Dec-09 15:28
draskosaric23-Dec-09 15:28 
AnswerRe: C# TripleDES and Perl CPAN:Crypt Pin
Garth J Lancaster23-Dec-09 17:01
professionalGarth J Lancaster23-Dec-09 17:01 
GeneralRe: C# TripleDES and Perl CPAN:Crypt Pin
draskosaric24-Dec-09 20:59
draskosaric24-Dec-09 20:59 
QuestionC# Creating a class and assigning properties to it. Pin
Darrall23-Dec-09 14:01
Darrall23-Dec-09 14:01 
AnswerRe: C# Creating a class and assigning properties to it. Pin
Luc Pattyn23-Dec-09 15:00
sitebuilderLuc Pattyn23-Dec-09 15:00 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Darrall23-Dec-09 15:49
Darrall23-Dec-09 15:49 
GeneralRe: C# Creating a class and assigning properties to it. Pin
Luc Pattyn23-Dec-09 16:06
sitebuilderLuc Pattyn23-Dec-09 16:06 
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;
        }

    }

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.