Click here to Skip to main content
15,924,507 members
Home / Discussions / C#
   

C#

 
GeneralGetting other applications window components Pin
koatto11-Nov-03 22:09
koatto11-Nov-03 22:09 
GeneralRe: Getting other applications window components Pin
Heath Stewart12-Nov-03 3:26
protectorHeath Stewart12-Nov-03 3:26 
Generalc# applet IE sandbox Pin
Sergiu11-Nov-03 20:27
Sergiu11-Nov-03 20:27 
GeneralRe: c# applet IE sandbox Pin
Heath Stewart12-Nov-03 3:14
protectorHeath Stewart12-Nov-03 3:14 
GeneralRe: c# applet IE sandbox Pin
Sergiu12-Nov-03 3:38
Sergiu12-Nov-03 3:38 
GeneralRe: c# applet IE sandbox Pin
Heath Stewart12-Nov-03 4:09
protectorHeath Stewart12-Nov-03 4:09 
General= operator Pin
mhmoud rawas11-Nov-03 20:13
mhmoud rawas11-Nov-03 20:13 
GeneralRe: = operator Pin
Arjan Einbu11-Nov-03 21:46
Arjan Einbu11-Nov-03 21:46 
The behaviour of the assignment operator ( = ) differs between reference types and value types.

References types are types defined with the class keyword, and value types are the types defined with the struct keyword. All "simple" types in C# are value types, except for string which is a reference type.

Sample with value types:
int a = 10;
int b = a;
Results in a and b beeing two seperate copies of the number 10.

Sample with reference types:
ArrayList a = new ArrayList();
ArrayList b = a;
Results in a and b beeing two pointers to the same ArrayList object.



Have a look at my latest article about Object Prevalence with Bamboo Prevalence.
GeneralRe: = operator Pin
mhmoud rawas11-Nov-03 23:30
mhmoud rawas11-Nov-03 23:30 
GeneralRe: = operator Pin
Arjan Einbu12-Nov-03 0:52
Arjan Einbu12-Nov-03 0:52 
GeneralRe: = operator Pin
mhmoud rawas12-Nov-03 18:07
mhmoud rawas12-Nov-03 18:07 
GeneralRe: = operator Pin
Heath Stewart12-Nov-03 3:44
protectorHeath Stewart12-Nov-03 3:44 
GeneralRe: = operator Pin
mhmoud rawas12-Nov-03 18:21
mhmoud rawas12-Nov-03 18:21 
GeneralRe: = operator Pin
UCVishnu11-Nov-03 23:02
UCVishnu11-Nov-03 23:02 
GeneralRe: = operator Pin
mhmoud rawas11-Nov-03 23:26
mhmoud rawas11-Nov-03 23:26 
GeneralDockable and Floatable toolbar Pin
azusakt11-Nov-03 19:42
azusakt11-Nov-03 19:42 
Questionhow to use ISAPI extension in my web server Pin
laurentz11-Nov-03 19:24
laurentz11-Nov-03 19:24 
AnswerRe: how to use ISAPI extension in my web server Pin
Heath Stewart12-Nov-03 3:52
protectorHeath Stewart12-Nov-03 3:52 
GeneralWorking with C# and Databases Pin
UCVishnu11-Nov-03 16:35
UCVishnu11-Nov-03 16:35 
GeneralRe: Working with C# and Databases Pin
Heath Stewart11-Nov-03 17:40
protectorHeath Stewart11-Nov-03 17:40 
GeneralRe: Working with C# and Databases Pin
Anonymous11-Nov-03 22:52
Anonymous11-Nov-03 22:52 
QuestionHow do I make the Form Menu Hide or SHOW with ESC key? Pin
CSharp131411-Nov-03 12:06
CSharp131411-Nov-03 12:06 
AnswerRe: How do I make the Form Menu Hide or SHOW with ESC key? Pin
Heath Stewart11-Nov-03 17:45
protectorHeath Stewart11-Nov-03 17:45 
GeneralRe: How do I make the Form Menu Hide or SHOW with ESC key? Pin
CSharp131414-Nov-03 2:47
CSharp131414-Nov-03 2:47 
GeneralRe: How do I make the Form Menu Hide or SHOW with ESC key? Pin
Heath Stewart14-Nov-03 2:54
protectorHeath Stewart14-Nov-03 2:54 

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.