Click here to Skip to main content
15,889,931 members
Home / Discussions / C#
   

C#

 
AnswerRe: Why does Navigation throw null exception when returning to a page 2nd time Pin
NeillJam14-Oct-15 0:24
NeillJam14-Oct-15 0:24 
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 
I have the following code To get the prime numbers between a range of numbers, is this the best and fast method?

C#
int[] NumberCollection = Enumerable.Range(startNum,Count).ToArray<int>();
string primeNumbers = string.Join(",", from number in NumberCollection
                                       where (IsPrime(number)==true)
                                       select number);

Where :
startNum is the starting number
Count is the number of numbers in the collection
IsPrimeis defined as follows:

C#
private static bool IsPrime(int number)
      {
          for (int i = 2; i < number; i++)
              if (number % i == 0) return false;
          return true;
      }

sujith karivelil
Microsoft Technology Associate

AnswerRe: is this the Best method to get prime numbers between a range Pin
OriginalGriff13-Oct-15 20:12
mveOriginalGriff13-Oct-15 20:12 
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 

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.