Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
AnswerRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 0:55
sitebuilderLuc Pattyn9-Apr-10 0:55 
GeneralRe: Random.next(min,max) Pin
igalep1329-Apr-10 1:02
igalep1329-Apr-10 1:02 
GeneralRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 1:08
sitebuilderLuc Pattyn9-Apr-10 1:08 
GeneralRe: Random.next(min,max) Pin
igalep1329-Apr-10 1:18
igalep1329-Apr-10 1:18 
GeneralRe: Random.next(min,max) Pin
David Skelly9-Apr-10 2:05
David Skelly9-Apr-10 2:05 
GeneralRe: Random.next(min,max) Pin
PIEBALDconsult9-Apr-10 3:34
mvePIEBALDconsult9-Apr-10 3:34 
GeneralRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 1:56
sitebuilderLuc Pattyn9-Apr-10 1:56 
GeneralRe: Random.next(min,max) Pin
David Skelly9-Apr-10 2:29
David Skelly9-Apr-10 2:29 
Off topic, so feel free to ignore this, but your loop count looks a bit odd to me. You increment i and test for it being less than zeroFrequencyLetterList.Count. But you remove an entry from the list each time through the loop. So, this loop will drop out before it has processed the entire list. Here is what happens if you have 10 entries in the list:

 i   Count
===  =====
 0    10
 1     9
 2     8
 3     7
 4     6
 5     5


The loop will stop at this point, so although you have 10 entries in the list you will only process 5 of them.

Not only that, but you will skip entries in the list. First time through, i is 0 so you remove the entry at index 0, so the entry that was at index 1 is now at index 0, and the entry at index 2 is now at 1. Next time through, i is 1 so you now pick up the entry at index 1 which means you have skipped the entry which was previously at index 1 but is now at index 0. (That's a bit confused, but if you think about it you'll see what I mean.)

That may be what you want, but it looks a bit strange to me.
GeneralRe: Random.next(min,max) [modified] Pin
igalep1329-Apr-10 2:42
igalep1329-Apr-10 2:42 
GeneralRe: Random.next(min,max) Pin
David Skelly9-Apr-10 2:57
David Skelly9-Apr-10 2:57 
GeneralRe: Random.next(min,max) Pin
igalep1329-Apr-10 5:36
igalep1329-Apr-10 5:36 
AnswerRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 2:18
sitebuilderLuc Pattyn9-Apr-10 2:18 
AnswerRe: Random.next(min,max) Pin
riced9-Apr-10 2:22
riced9-Apr-10 2:22 
GeneralRe: Random.next(min,max) Pin
David Skelly9-Apr-10 2:34
David Skelly9-Apr-10 2:34 
GeneralRe: Random.next(min,max) Pin
ragnaroknrol9-Apr-10 6:18
ragnaroknrol9-Apr-10 6:18 
GeneralRe: Random.next(min,max) Pin
Luc Pattyn9-Apr-10 2:39
sitebuilderLuc Pattyn9-Apr-10 2:39 
Questioncopi image from picturebox to scalablepicturebox control Pin
aasif aslam9-Apr-10 0:07
aasif aslam9-Apr-10 0:07 
AnswerRe: copi image from picturebox to scalablepicturebox control Pin
OriginalGriff9-Apr-10 0:26
mveOriginalGriff9-Apr-10 0:26 
QuestionHow to filter two columns in bindingsource Pin
crisjala8-Apr-10 23:44
crisjala8-Apr-10 23:44 
AnswerRe: How to filter two columns in bindingsource Pin
OriginalGriff9-Apr-10 0:04
mveOriginalGriff9-Apr-10 0:04 
QuestionAbout the Pop3 Pin
Omkaar8-Apr-10 23:42
Omkaar8-Apr-10 23:42 
AnswerRe: About the Pop3 Pin
OriginalGriff9-Apr-10 0:06
mveOriginalGriff9-Apr-10 0:06 
AnswerRe: About the Pop3 Pin
yu-jian9-Apr-10 2:24
yu-jian9-Apr-10 2:24 
Questionsouth african phone number validation Pin
Morgs Morgan8-Apr-10 23:01
Morgs Morgan8-Apr-10 23:01 
AnswerRe: south african phone number validation Pin
Keith Barrow8-Apr-10 23:11
professionalKeith Barrow8-Apr-10 23:11 

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.