Click here to Skip to main content
15,920,031 members
Home / Discussions / C#
   

C#

 
GeneralRe: Interoperatibility... Pin
DaveyM6915-Mar-08 5:33
professionalDaveyM6915-Mar-08 5:33 
QuestionRe: Interoperatibility... Pin
Rahul.RK15-Mar-08 5:41
Rahul.RK15-Mar-08 5:41 
GeneralRe: Interoperatibility... Pin
Mircea Puiu15-Mar-08 7:13
Mircea Puiu15-Mar-08 7:13 
Generalwpf Pin
SVb.net15-Mar-08 4:21
SVb.net15-Mar-08 4:21 
GeneralRe: wpf Pin
DaveyM6915-Mar-08 4:34
professionalDaveyM6915-Mar-08 4:34 
GeneralRe: wpf Pin
Kevin McFarlane15-Mar-08 5:16
Kevin McFarlane15-Mar-08 5:16 
GeneralCount same values in single array Pin
Cptkli15-Mar-08 1:35
Cptkli15-Mar-08 1:35 
GeneralRe: Count same values in single array Pin
pmarfleet15-Mar-08 1:56
pmarfleet15-Mar-08 1:56 
Use a generic Dictionary<int, int=""> to store the frequency count of each unique value in the array.

Loop through the values in the array. For each value, increment the frequency count for that value in your Dictionary by 1. After you have passed through the array, your Dictionary should contain a number of items whose keys represent the unique values in your array. The value associated with each key will represent the frequency count for that value.

Paul Marfleet

"No, his mind is not for rent
To any God or government"
Tom Sawyer - Rush


GeneralRe: Count same values in single array Pin
Cptkli15-Mar-08 3:51
Cptkli15-Mar-08 3:51 
GeneralRe: Count same values in single array Pin
buchstaben15-Mar-08 5:44
buchstaben15-Mar-08 5:44 
GeneralRe: Count same values in single array Pin
pmarfleet15-Mar-08 6:37
pmarfleet15-Mar-08 6:37 
GeneralRe: Count same values in single array Pin
buchstaben15-Mar-08 8:52
buchstaben15-Mar-08 8:52 
GeneralRe: Count same values in single array Pin
pmarfleet15-Mar-08 6:21
pmarfleet15-Mar-08 6:21 
GeneralRe: Count same values in single array Pin
Cptkli15-Mar-08 7:17
Cptkli15-Mar-08 7:17 
GeneralRe: Count same values in single array Pin
Luc Pattyn15-Mar-08 9:06
sitebuilderLuc Pattyn15-Mar-08 9:06 
GeneralEvent Problem Pin
Jammer15-Mar-08 1:09
Jammer15-Mar-08 1:09 
GeneralRe: Event Problem Pin
Luc Pattyn15-Mar-08 1:23
sitebuilderLuc Pattyn15-Mar-08 1:23 
GeneralRe: Event Problem Pin
Jammer15-Mar-08 1:50
Jammer15-Mar-08 1:50 
GeneralRe: Event Problem Pin
DaveyM6915-Mar-08 2:38
professionalDaveyM6915-Mar-08 2:38 
GeneralRe: Event Problem Pin
Jammer15-Mar-08 3:00
Jammer15-Mar-08 3:00 
GeneralRe: Event Problem Pin
Jammer15-Mar-08 2:39
Jammer15-Mar-08 2:39 
GeneralRe: Event Problem Pin
DaveyM6915-Mar-08 2:45
professionalDaveyM6915-Mar-08 2:45 
GeneralRe: Event Problem Pin
Jammer15-Mar-08 3:05
Jammer15-Mar-08 3:05 
GeneralRe: Event Problem Pin
DaveyM6915-Mar-08 3:26
professionalDaveyM6915-Mar-08 3:26 
GeneralRe: Event Problem Pin
Jammer15-Mar-08 3:41
Jammer15-Mar-08 3:41 

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.