Click here to Skip to main content
15,912,756 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert to hex Pin
Eslam Afifi16-Jun-08 5:14
Eslam Afifi16-Jun-08 5:14 
GeneralRe: Convert to hex Pin
Anthony Mushrow16-Jun-08 5:16
professionalAnthony Mushrow16-Jun-08 5:16 
GeneralRe: Convert to hex Pin
Eslam Afifi16-Jun-08 6:09
Eslam Afifi16-Jun-08 6:09 
GeneralRe: Convert to hex Pin
Anthony Mushrow16-Jun-08 7:05
professionalAnthony Mushrow16-Jun-08 7:05 
GeneralRe: Convert to hex Pin
Eslam Afifi16-Jun-08 7:17
Eslam Afifi16-Jun-08 7:17 
GeneralRe: Convert to hex Pin
Anthony Mushrow16-Jun-08 7:41
professionalAnthony Mushrow16-Jun-08 7:41 
GeneralRe: Convert to hex Pin
Eslam Afifi16-Jun-08 8:06
Eslam Afifi16-Jun-08 8:06 
GeneralRe: Convert to hex Pin
Anthony Mushrow16-Jun-08 8:31
professionalAnthony Mushrow16-Jun-08 8:31 
GeneralRe: Convert to hex [modified] Pin
Eslam Afifi16-Jun-08 10:53
Eslam Afifi16-Jun-08 10:53 
GeneralRe: Convert to hex Pin
Susanmat16-Jun-08 20:26
Susanmat16-Jun-08 20:26 
AnswerRe: Convert to hex Pin
Eslam Afifi17-Jun-08 2:20
Eslam Afifi17-Jun-08 2:20 
GeneralRe: Convert to hex Pin
Susanmat17-Jun-08 19:34
Susanmat17-Jun-08 19:34 
GeneralRe: Convert to hex Pin
Eslam Afifi17-Jun-08 20:39
Eslam Afifi17-Jun-08 20:39 
QuestionCode for detecting all the firewalls installed on a system Pin
Neeraj Kr15-Jun-08 21:03
Neeraj Kr15-Jun-08 21:03 
AnswerRe: Code for detecting all the firewalls installed on a system Pin
Simon P Stevens16-Jun-08 1:57
Simon P Stevens16-Jun-08 1:57 
QuestionSwitching between forms Pin
Christian Flutcher15-Jun-08 20:10
Christian Flutcher15-Jun-08 20:10 
AnswerRe: Switching between forms Pin
Simon P Stevens16-Jun-08 2:00
Simon P Stevens16-Jun-08 2:00 
Questiondefault constructor? Pin
George_George15-Jun-08 19:25
George_George15-Jun-08 19:25 
AnswerRe: default constructor? Pin
S. Senthil Kumar15-Jun-08 19:31
S. Senthil Kumar15-Jun-08 19:31 
GeneralRe: default constructor? Pin
George_George15-Jun-08 19:36
George_George15-Jun-08 19:36 
GeneralRe: default constructor? Pin
Christian Flutcher15-Jun-08 20:13
Christian Flutcher15-Jun-08 20:13 
GeneralRe: default constructor? Pin
S. Senthil Kumar15-Jun-08 20:40
S. Senthil Kumar15-Jun-08 20:40 
GeneralRe: default constructor? Pin
Christian Flutcher15-Jun-08 20:44
Christian Flutcher15-Jun-08 20:44 
GeneralRe: default constructor? Pin
George_George15-Jun-08 20:45
George_George15-Jun-08 20:45 
GeneralRe: default constructor? Pin
Guffa15-Jun-08 21:39
Guffa15-Jun-08 21:39 
George_George wrote:
1. For value type, whether or not we provide a customized constructor, there is a default one (co-exist with customized one).


No, but you can always create value types without calling a constructor.

If you for example declare an array of value types, the array will be filled with the default value of the value type (which is all members set to zero).

George_George wrote:
2. For reference type, there is also a default constructor, whether or not we provide a customized one (co-exist with default one).


No, if you create a custom constructor, there is no default constructor automatically created for you.

Despite everything, the person most likely to be fooling you next is yourself.

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.