Click here to Skip to main content
16,016,345 members
Home / Discussions / C#
   

C#

 
GeneralRe: C#.NET run exe one time at one machine Pin
Paul Conrad2-Feb-08 12:11
professionalPaul Conrad2-Feb-08 12:11 
QuestionDatabase validation Pin
Smithakrishnan1-Feb-08 17:15
Smithakrishnan1-Feb-08 17:15 
GeneralRe: Database validation Pin
DaveyM692-Feb-08 0:30
professionalDaveyM692-Feb-08 0:30 
GeneralRe: Database validation Pin
DaveyM693-Feb-08 0:05
professionalDaveyM693-Feb-08 0:05 
GeneralOK that's a new one (strange use of colon operator) Pin
Jasmine25011-Feb-08 11:14
Jasmine25011-Feb-08 11:14 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
Guffa1-Feb-08 11:22
Guffa1-Feb-08 11:22 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
led mike1-Feb-08 11:27
led mike1-Feb-08 11:27 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
Pete O'Hanlon1-Feb-08 11:37
mvePete O'Hanlon1-Feb-08 11:37 
It calls the constructor in the current class that has two int parameters and initializes them with the values 2000 and 1. You can fall through these constructors many times as in the following example:
public SearchCriteria() : this(2000, 1) {}
public SearchCriteria(int value, int otherValue) : this(value, otherValue, 20) {}
public SearchCriteria(int value, int otherValue, int finalValue)
{
  _value = value;
  _otherValue = otherValue;
  _finalValue = finalValue;
}



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

My blog | My articles



GeneralRe: OK that's a new one (strange use of colon operator) Pin
Colin Angus Mackay1-Feb-08 14:42
Colin Angus Mackay1-Feb-08 14:42 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
Jasmine25012-Feb-08 14:09
Jasmine25012-Feb-08 14:09 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
peterchen2-Feb-08 14:42
peterchen2-Feb-08 14:42 
GeneralRe: OK that's a new one (strange use of colon operator) Pin
Jasmine25012-Feb-08 20:16
Jasmine25012-Feb-08 20:16 
QuestionA More Generic Way? Pin
#realJSOP1-Feb-08 10:46
professional#realJSOP1-Feb-08 10:46 
AnswerRe: A More Generic Way? Pin
leppie1-Feb-08 10:57
leppie1-Feb-08 10:57 
GeneralRe: A More Generic Way? Pin
#realJSOP1-Feb-08 11:04
professional#realJSOP1-Feb-08 11:04 
GeneralRe: A More Generic Way? [modified] Pin
Pete O'Hanlon1-Feb-08 11:30
mvePete O'Hanlon1-Feb-08 11:30 
GeneralRe: A More Generic Way? Pin
leppie1-Feb-08 11:31
leppie1-Feb-08 11:31 
GeneralRe: A More Generic Way? Pin
Pete O'Hanlon1-Feb-08 11:33
mvePete O'Hanlon1-Feb-08 11:33 
GeneralRe: A More Generic Way? Pin
leppie1-Feb-08 11:39
leppie1-Feb-08 11:39 
GeneralRe: A More Generic Way? Pin
leppie1-Feb-08 11:40
leppie1-Feb-08 11:40 
GeneralRe: A More Generic Way? Pin
Pete O'Hanlon1-Feb-08 11:41
mvePete O'Hanlon1-Feb-08 11:41 
GeneralRe: A More Generic Way? Pin
leppie1-Feb-08 11:47
leppie1-Feb-08 11:47 
GeneralRe: A More Generic Way? Pin
PIEBALDconsult1-Feb-08 13:00
mvePIEBALDconsult1-Feb-08 13:00 
GeneralRe: A More Generic Way? Pin
#realJSOP2-Feb-08 0:46
professional#realJSOP2-Feb-08 0:46 
GeneralRe: A More Generic Way? Pin
Pete O'Hanlon3-Feb-08 0:01
mvePete O'Hanlon3-Feb-08 0:01 

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.