Click here to Skip to main content
15,907,396 members
Home / Discussions / C#
   

C#

 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
Sultan Uz Zaman14-Oct-15 1:42
Sultan Uz Zaman14-Oct-15 1:42 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
NeillJam14-Oct-15 1:46
NeillJam14-Oct-15 1:46 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
Sultan Uz Zaman14-Oct-15 20:21
Sultan Uz Zaman14-Oct-15 20:21 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
NeillJam14-Oct-15 20:55
NeillJam14-Oct-15 20:55 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
Sultan Uz Zaman14-Oct-15 21:40
Sultan Uz Zaman14-Oct-15 21:40 
GeneralRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
NeillJam15-Oct-15 20:20
NeillJam15-Oct-15 20:20 
Questionis this the Best method to get prime numbers between a range Pin
Sujith Karivelil13-Oct-15 18:54
professionalSujith Karivelil13-Oct-15 18:54 
AnswerRe: is this the Best method to get prime numbers between a range Pin
OriginalGriff13-Oct-15 20:12
mveOriginalGriff13-Oct-15 20:12 
No.
For starters, your loop is going to check each and every possible divisor from 2 on up: so if the number is 13, it will check 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
Since you checked 2 to start with, it can't be divisible by any other even number - so why check them?
Then you would check 2, 3, 5, 7, 9, 11
But...since it's not divisible by 2, it isn't divisible by any number greater than number / 2 so why check 7, 9, 11?

Two simple changes, and you reduce the number of loops from 12, to 3...

I'd suggest that you tart by doing some reading: https://en.wikipedia.org/wiki/Primality_test[^] - there are much more efficient methods.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: is this the Best method to get prime numbers between a range Pin
Sujith Karivelil13-Oct-15 20:57
professionalSujith Karivelil13-Oct-15 20:57 
QuestionC# desktop app being shared Pin
classy_dog13-Oct-15 7:15
classy_dog13-Oct-15 7:15 
AnswerRe: C# desktop app being shared Pin
Richard MacCutchan13-Oct-15 8:00
mveRichard MacCutchan13-Oct-15 8:00 
SuggestionRe: C# desktop app being shared Pin
Richard MacCutchan13-Oct-15 8:06
mveRichard MacCutchan13-Oct-15 8:06 
QuestionC# Program Output?? Pin
Member 1205574913-Oct-15 5:49
Member 1205574913-Oct-15 5:49 
AnswerRe: C# Program Output?? Pin
Eddy Vluggen13-Oct-15 6:04
professionalEddy Vluggen13-Oct-15 6:04 
GeneralRe: C# Program Output?? Pin
Rob Philpott13-Oct-15 6:45
Rob Philpott13-Oct-15 6:45 
GeneralRe: C# Program Output?? Pin
Eddy Vluggen13-Oct-15 8:36
professionalEddy Vluggen13-Oct-15 8:36 
AnswerRe: C# Program Output?? Pin
Nelson Costa Inácio13-Oct-15 6:53
Nelson Costa Inácio13-Oct-15 6:53 
AnswerRe: C# Program Output?? Pin
Pete O'Hanlon13-Oct-15 7:02
mvePete O'Hanlon13-Oct-15 7:02 
QuestionRe: C# Program Output?? PinPopular
Paul Conrad13-Oct-15 7:13
professionalPaul Conrad13-Oct-15 7:13 
AnswerRe: C# Program Output?? Pin
John Torjo19-Oct-15 22:09
professionalJohn Torjo19-Oct-15 22:09 
Questionc Pin
User 1202214013-Oct-15 5:12
User 1202214013-Oct-15 5:12 
QuestionRe: c# Pin
Paul Conrad13-Oct-15 5:19
professionalPaul Conrad13-Oct-15 5:19 
AnswerRe: c Pin
Richard MacCutchan13-Oct-15 7:56
mveRichard MacCutchan13-Oct-15 7:56 
Questionre-cast of Control back to its Native Type ? Pin
BillWoodruff13-Oct-15 0:48
professionalBillWoodruff13-Oct-15 0:48 
AnswerRe: re-cast of Control back to its Native Type ? Pin
Pete O'Hanlon13-Oct-15 1:14
mvePete O'Hanlon13-Oct-15 1:14 

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.