Click here to Skip to main content
16,011,170 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to search the Message Boards? Pin
Nnamdi Onyeyiri5-Jul-02 7:01
Nnamdi Onyeyiri5-Jul-02 7:01 
AnswerRe: How to search the Message Boards? Pin
Mazdak5-Jul-02 8:49
Mazdak5-Jul-02 8:49 
GeneralOpaque Controls Pin
Martin D5-Jul-02 4:34
Martin D5-Jul-02 4:34 
GeneralRe: Opaque Controls Pin
Marc Clifton21-Nov-02 1:21
mvaMarc Clifton21-Nov-02 1:21 
GeneralDrawing Application... Pin
Vu Truong5-Jul-02 2:20
Vu Truong5-Jul-02 2:20 
GeneralRe: Drawing Application... Pin
Rüpel5-Jul-02 2:36
Rüpel5-Jul-02 2:36 
QuestionCopy or reference? Pin
Daniel Strigl5-Jul-02 1:57
Daniel Strigl5-Jul-02 1:57 
AnswerRe: Copy or reference? Pin
SimonS5-Jul-02 2:08
SimonS5-Jul-02 2:08 
jb_dani wrote:
Sorry for my bad english
It's fine. Wink | ;)
int i = 1;
object o = i;
Console.WriteLine(o.ToString());
i=10;
Console.WriteLine(o.ToString());
Console.ReadLine();

Output is: "1 \n 1"
The "i" value is copied to object "o", so there is no longer a reference between the two.

HTH

Cheers,
Simon

"Sign up for a chance to be among the first to experience the wrath of the gods.", Microsoft's home page (24/06/2002)

GeneralRe: Copy or reference? Pin
Daniel Strigl5-Jul-02 2:23
Daniel Strigl5-Jul-02 2:23 
GeneralRe: Copy or reference? Pin
SimonS5-Jul-02 2:32
SimonS5-Jul-02 2:32 
GeneralRe: Copy or reference? Pin
Daniel Strigl5-Jul-02 2:47
Daniel Strigl5-Jul-02 2:47 
GeneralRe: Copy or reference? Pin
SimonS5-Jul-02 9:40
SimonS5-Jul-02 9:40 
GeneralRe: Copy or reference? Pin
Oyvind Bratland7-Jul-02 21:39
Oyvind Bratland7-Jul-02 21:39 
GeneralRe: Copy or reference? Pin
Rama Krishna Vavilala5-Jul-02 16:08
Rama Krishna Vavilala5-Jul-02 16:08 
AnswerRe: Copy or reference? Pin
Bo Norgaard5-Jul-02 2:16
Bo Norgaard5-Jul-02 2:16 
GeneralRe: Copy or reference? Pin
Daniel Strigl5-Jul-02 2:21
Daniel Strigl5-Jul-02 2:21 
GeneralRe: Copy or reference? Pin
Bo Norgaard5-Jul-02 2:32
Bo Norgaard5-Jul-02 2:32 
AnswerRe: Copy or reference? Pin
Rüpel5-Jul-02 2:21
Rüpel5-Jul-02 2:21 
GeneralRe: Copy or reference? Pin
Nick Parker5-Jul-02 18:54
protectorNick Parker5-Jul-02 18:54 
AnswerRe: Copy or reference? Pin
leppie5-Jul-02 4:35
leppie5-Jul-02 4:35 
GeneralRe: Copy or reference? Pin
SimonS5-Jul-02 10:00
SimonS5-Jul-02 10:00 
GeneralRe: Copy or reference? Pin
James T. Johnson5-Jul-02 16:18
James T. Johnson5-Jul-02 16:18 
AnswerRe: Copy or reference? Pin
James T. Johnson5-Jul-02 16:35
James T. Johnson5-Jul-02 16:35 
GeneralRe: Copy or reference? Pin
Daniel Strigl7-Jul-02 20:46
Daniel Strigl7-Jul-02 20:46 
GeneralRe: Copy or reference? Pin
James T. Johnson7-Jul-02 22:18
James T. Johnson7-Jul-02 22:18 

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.