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

C#

 
GeneralRe: Get Text From an Image File Pin
Anubhava Dimri10-Nov-10 0:49
Anubhava Dimri10-Nov-10 0:49 
GeneralRe: Get Text From an Image File Pin
88Rocker10-Nov-10 1:43
88Rocker10-Nov-10 1:43 
Questioncomparing integers [modified] Pin
pancakeleh9-Nov-10 16:27
pancakeleh9-Nov-10 16:27 
AnswerRe: comparing integers PinPopular
Luc Pattyn9-Nov-10 16:57
sitebuilderLuc Pattyn9-Nov-10 16:57 
AnswerRe: comparing integers Pin
Abhinav S9-Nov-10 18:21
Abhinav S9-Nov-10 18:21 
GeneralRe: comparing integers Pin
musefan10-Nov-10 3:13
musefan10-Nov-10 3:13 
AnswerRe: comparing integers Pin
Pete O'Hanlon9-Nov-10 22:47
mvePete O'Hanlon9-Nov-10 22:47 
AnswerRe: comparing integers Pin
musefan10-Nov-10 3:24
musefan10-Nov-10 3:24 
Based on your question I would assume this is some kind of homework assignment so you should definitely use my other post suggestion for LINQ and not explain your method in any shape, way or form.... then your lesson is learned Laugh | :laugh:

The reason why this must be a homework assignment is because it is so basic. If you where trying to do this for any other reason (like a career in programming) then you should have more of an interest, which would mean you would have already gone down the route Luc had suggested (which is certainly the way forward) and would not be posting this question ANYWHERE.

The other option is that the potential money for a career in programming is your motivation but unfortunately with great programming career comes great need for ability to think

...maybe I am being too harsh...

int min = nums[0];
int max = nums[0];

foreach(int i in nums){
   if(i < min)
      min = i;
   if(i > max)
      max = i;
}


...now the challenge: can you work out how to create nums?
Life goes very fast. Tomorrow, today is already yesterday.

GeneralRe: comparing integers Pin
Pete O'Hanlon10-Nov-10 10:25
mvePete O'Hanlon10-Nov-10 10:25 
Questionupdating an exe in control panel Pin
Anil Kumar.Arvapalli9-Nov-10 16:26
Anil Kumar.Arvapalli9-Nov-10 16:26 
AnswerCrosspost warning! Pin
Peter_in_27809-Nov-10 16:35
professionalPeter_in_27809-Nov-10 16:35 
QuestionPing multiple IP adresses Pin
peropata9-Nov-10 9:36
peropata9-Nov-10 9:36 
AnswerRe: Ping multiple IP adresses Pin
Luc Pattyn9-Nov-10 10:08
sitebuilderLuc Pattyn9-Nov-10 10:08 
GeneralRe: Ping multiple IP adresses Pin
peropata9-Nov-10 11:18
peropata9-Nov-10 11:18 
GeneralRe: Ping multiple IP adresses Pin
Luc Pattyn9-Nov-10 11:24
sitebuilderLuc Pattyn9-Nov-10 11:24 
GeneralRe: Ping multiple IP adresses Pin
peropata9-Nov-10 11:49
peropata9-Nov-10 11:49 
GeneralRe: Ping multiple IP adresses Pin
Mycroft Holmes9-Nov-10 12:10
professionalMycroft Holmes9-Nov-10 12:10 
QuestionGenerate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed [modified] Pin
tschueggi9-Nov-10 3:08
tschueggi9-Nov-10 3:08 
AnswerRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
Luc Pattyn9-Nov-10 4:08
sitebuilderLuc Pattyn9-Nov-10 4:08 
GeneralRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
tschueggi9-Nov-10 5:30
tschueggi9-Nov-10 5:30 
GeneralRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
Luc Pattyn9-Nov-10 6:29
sitebuilderLuc Pattyn9-Nov-10 6:29 
GeneralRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
tschueggi10-Nov-10 2:13
tschueggi10-Nov-10 2:13 
AnswerRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
_Erik_10-Nov-10 1:58
_Erik_10-Nov-10 1:58 
GeneralRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
tschueggi10-Nov-10 2:20
tschueggi10-Nov-10 2:20 
GeneralRe: Generate Word Report fails with System.Runtime.InteropServices.COMException (0x800A1066): Command Failed Pin
_Erik_10-Nov-10 2:52
_Erik_10-Nov-10 2:52 

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.