Click here to Skip to main content
15,920,685 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Questionelp mehow to insert undeletable image in word document Pin
Kumar Arun1-Feb-07 19:17
Kumar Arun1-Feb-07 19:17 
AnswerRe: elp mehow to insert undeletable image in word document Pin
Pete O'Hanlon1-Feb-07 22:32
mvePete O'Hanlon1-Feb-07 22:32 
QuestionQuestion Regarding WSE 2.0 and 3.0 Pin
sharmankit1-Feb-07 12:40
sharmankit1-Feb-07 12:40 
QuestionTable variables Pin
Hendrik Debedts1-Feb-07 10:58
Hendrik Debedts1-Feb-07 10:58 
QuestionExit For in C#? Pin
Hendrik Debedts1-Feb-07 6:38
Hendrik Debedts1-Feb-07 6:38 
AnswerRe: Exit For in C#? Pin
PIEBALDconsult1-Feb-07 6:41
mvePIEBALDconsult1-Feb-07 6:41 
GeneralRe: Exit For in C#? Pin
Hendrik Debedts1-Feb-07 6:51
Hendrik Debedts1-Feb-07 6:51 
GeneralRe: Exit For in C#? Pin
Pete O'Hanlon1-Feb-07 9:07
mvePete O'Hanlon1-Feb-07 9:07 
Most times when you use this it indicates that you have used the wrong construct. If you are issuing a break then this shows that you have reached a terminating condition.

If you need to drop out of a loop early, this would indicate that you should be using something like a while loop instead. See the following:

for (int i = 0; i < 10 ; i++)
{
  // Do something
  if (i == 2) break;
}

Contrast this with:

int i = 0;

while (i++ != 2)
{
 // Do something
}



the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer

Deja View - the feeling that you've seen this post before.

GeneralRe: Exit For in C#? Pin
led mike1-Feb-07 10:28
led mike1-Feb-07 10:28 
GeneralRe: Exit For in C#? Pin
Alexandru Lungu2-Feb-07 6:09
professionalAlexandru Lungu2-Feb-07 6:09 
GeneralRe: Exit For in C#? Pin
Pete O'Hanlon2-Feb-07 8:32
mvePete O'Hanlon2-Feb-07 8:32 
GeneralRe: Exit For in C#? Pin
PIEBALDconsult2-Feb-07 8:34
mvePIEBALDconsult2-Feb-07 8:34 
QuestionDoes anyone know how to deploy the MMC Snapin project ? Pin
Glen Liu1-Feb-07 5:41
Glen Liu1-Feb-07 5:41 
QuestionHelp using DataGrid Pin
ricecake1-Feb-07 5:07
ricecake1-Feb-07 5:07 
AnswerRe: Help using DataGrid Pin
ricecake20-Feb-07 11:11
ricecake20-Feb-07 11:11 
Questioniextenderprovider Pin
nileshkolnoorkar1-Feb-07 1:53
nileshkolnoorkar1-Feb-07 1:53 
Question.NET 2005 project build number Pin
MayyMagdy1-Feb-07 1:33
MayyMagdy1-Feb-07 1:33 
AnswerRe: .NET 2005 project build number Pin
ednrgc12-Feb-07 5:06
ednrgc12-Feb-07 5:06 
QuestionCScrollView equivalent Pin
hairy_hats1-Feb-07 0:08
hairy_hats1-Feb-07 0:08 
QuestionImplement Explicit Interface? Pin
Captain See Sharp31-Jan-07 15:45
Captain See Sharp31-Jan-07 15:45 
AnswerRe: Implement Explicit Interface? Pin
PIEBALDconsult1-Feb-07 7:40
mvePIEBALDconsult1-Feb-07 7:40 
GeneralRe: Implement Explicit Interface? Pin
Captain See Sharp1-Feb-07 8:26
Captain See Sharp1-Feb-07 8:26 
AnswerRe: Implement Explicit Interface? Pin
Guffa1-Feb-07 9:09
Guffa1-Feb-07 9:09 
GeneralRe: Implement Explicit Interface? Pin
Captain See Sharp1-Feb-07 9:18
Captain See Sharp1-Feb-07 9:18 
AnswerRe: Implement Explicit Interface? Pin
Guffa1-Feb-07 10:02
Guffa1-Feb-07 10:02 

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.