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

C#

 
GeneralRe: why password is not decrypting Pin
Sascha Lefèvre26-Feb-16 1:44
professionalSascha Lefèvre26-Feb-16 1:44 
AnswerRe: why password is not decrypting Pin
ZurdoDev26-Feb-16 4:01
professionalZurdoDev26-Feb-16 4:01 
GeneralRe: why password is not decrypting Pin
Richard MacCutchan26-Feb-16 6:18
mveRichard MacCutchan26-Feb-16 6:18 
GeneralRe: why password is not decrypting Pin
ZurdoDev26-Feb-16 6:23
professionalZurdoDev26-Feb-16 6:23 
GeneralRe: why password is not decrypting Pin
Richard MacCutchan26-Feb-16 6:41
mveRichard MacCutchan26-Feb-16 6:41 
GeneralRe: why password is not decrypting Pin
ZurdoDev26-Feb-16 7:03
professionalZurdoDev26-Feb-16 7:03 
QuestionHow can i get array index to satisfy my requirement fastly? Pin
smallkubi25-Feb-16 19:02
smallkubi25-Feb-16 19:02 
AnswerRe: How can i get array index to satisfy my requirement fastly? Pin
OriginalGriff25-Feb-16 19:42
mveOriginalGriff25-Feb-16 19:42 
In case one, a simple Binary search algorithm - Wikipedia, the free encyclopedia[^] should do it, assumign there is no "bad" data.

When you data goes bad, that's different, and it becomes necessary to actually search the whole array - if there is one bad value, then it's likely there are more.

But the alternative to both is to to it all while you fill the array - since that is already a time consuming process (compared to a search of the results) adding a little extra checking to find the first negative as you fill the values is trivial, and allows you to cope with the second case as well.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

QuestionDebugging: Stepping into Entity Framework Pin
Sascha Lefèvre24-Feb-16 23:39
professionalSascha Lefèvre24-Feb-16 23:39 
AnswerRe: Debugging: Stepping into Entity Framework Pin
Simon_Whale25-Feb-16 0:55
Simon_Whale25-Feb-16 0:55 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 1:01
professionalSascha Lefèvre25-Feb-16 1:01 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Raj Champaneriya25-Feb-16 4:22
professionalRaj Champaneriya25-Feb-16 4:22 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 5:06
professionalSascha Lefèvre25-Feb-16 5:06 
AnswerRe: Debugging: Stepping into Entity Framework Pin
Dave Kreskowiak25-Feb-16 5:06
mveDave Kreskowiak25-Feb-16 5:06 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 5:21
professionalSascha Lefèvre25-Feb-16 5:21 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Dave Kreskowiak25-Feb-16 5:41
mveDave Kreskowiak25-Feb-16 5:41 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 6:07
professionalSascha Lefèvre25-Feb-16 6:07 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 8:45
professionalSascha Lefèvre25-Feb-16 8:45 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Dave Kreskowiak25-Feb-16 9:25
mveDave Kreskowiak25-Feb-16 9:25 
GeneralRe: Debugging: Stepping into Entity Framework Pin
Sascha Lefèvre25-Feb-16 9:59
professionalSascha Lefèvre25-Feb-16 9:59 
QuestionRx SubscribeOn and ObserveOn Pin
Kenneth Haugland24-Feb-16 20:02
mvaKenneth Haugland24-Feb-16 20:02 
AnswerRe: Rx SubscribeOn and ObserveOn Pin
Pete O'Hanlon25-Feb-16 0:13
mvePete O'Hanlon25-Feb-16 0:13 
GeneralRe: Rx SubscribeOn and ObserveOn Pin
Kenneth Haugland25-Feb-16 1:42
mvaKenneth Haugland25-Feb-16 1:42 
GeneralRe: Rx SubscribeOn and ObserveOn Pin
Pete O'Hanlon25-Feb-16 2:05
mvePete O'Hanlon25-Feb-16 2:05 
GeneralRe: Rx SubscribeOn and ObserveOn Pin
Kenneth Haugland25-Feb-16 2:31
mvaKenneth Haugland25-Feb-16 2:31 

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.