Click here to Skip to main content
15,890,690 members
Home / Discussions / C#
   

C#

 
AnswerRe: Edit menu Pin
S. Senthil Kumar7-Nov-05 5:08
S. Senthil Kumar7-Nov-05 5:08 
Questionhelp Print Version Professional C# 2005 Pin
rjorget7-Nov-05 3:37
rjorget7-Nov-05 3:37 
AnswerRe: help Print Version Professional C# 2005 Pin
Gulfraz Khan7-Nov-05 5:37
Gulfraz Khan7-Nov-05 5:37 
QuestionHelpProvider question Pin
Dan Neely7-Nov-05 3:34
Dan Neely7-Nov-05 3:34 
QuestionCopy Object - Problem within ArrayList Pin
Seraphin7-Nov-05 2:58
Seraphin7-Nov-05 2:58 
AnswerRe: Copy Object - Problem within ArrayList Pin
S. Senthil Kumar7-Nov-05 5:00
S. Senthil Kumar7-Nov-05 5:00 
Questionhow make a reference in c# Pin
rjorget7-Nov-05 2:36
rjorget7-Nov-05 2:36 
AnswerRe: how make a reference in c# Pin
S. Senthil Kumar7-Nov-05 5:05
S. Senthil Kumar7-Nov-05 5:05 
In C#, all classes are reference types. They are different from C++ references, in fact, you can consider them as pointers. For example
class A
{
   public int x;
}

static void Main()
{
   A a = new A();
   a.x = 10;
   A b = a;
   Console.WriteLine(b.x); // Prints 10
   b.x = 20;
   Console.WriteLine(a.x); // Prints 20
} 


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
AnswerRe: how make a reference in c# Pin
Jon Rista8-Nov-05 7:51
Jon Rista8-Nov-05 7:51 
Questionproblem with visual studio .net 2003 Pin
Gulfraz Khan7-Nov-05 1:48
Gulfraz Khan7-Nov-05 1:48 
AnswerRe: problem with visual studio .net 2003 Pin
Dan Neely7-Nov-05 5:05
Dan Neely7-Nov-05 5:05 
GeneralRe: problem with visual studio .net 2003 Pin
Gulfraz Khan7-Nov-05 5:24
Gulfraz Khan7-Nov-05 5:24 
GeneralRe: problem with visual studio .net 2003 Pin
Dan Neely7-Nov-05 7:16
Dan Neely7-Nov-05 7:16 
GeneralRe: problem with visual studio .net 2003 Pin
Gulfraz Khan8-Nov-05 0:09
Gulfraz Khan8-Nov-05 0:09 
Questionhttp://www.codeproject.com/csharp/minihttpd.asp Pin
sayangoin7-Nov-05 1:15
sayangoin7-Nov-05 1:15 
AnswerRe: http://www.codeproject.com/csharp/minihttpd.asp Pin
mav.northwind7-Nov-05 20:26
mav.northwind7-Nov-05 20:26 
Questiondownload image over http Pin
g00fyman7-Nov-05 0:54
g00fyman7-Nov-05 0:54 
AnswerRe: download image over http Pin
David Stone7-Nov-05 9:34
sitebuilderDavid Stone7-Nov-05 9:34 
GeneralRe: download image over http Pin
g00fyman7-Nov-05 10:26
g00fyman7-Nov-05 10:26 
GeneralRe: download image over http Pin
Jon Rista8-Nov-05 7:35
Jon Rista8-Nov-05 7:35 
GeneralRe: download image over http Pin
g00fyman8-Nov-05 13:07
g00fyman8-Nov-05 13:07 
QuestionCombining Cells Probs Pin
tadhg887-Nov-05 0:44
tadhg887-Nov-05 0:44 
GeneralRe: Combining Cells Probs Pin
Vikram A Punathambekar7-Nov-05 1:58
Vikram A Punathambekar7-Nov-05 1:58 
AnswerRe: Combining Cells Probs Pin
J4amieC7-Nov-05 2:35
J4amieC7-Nov-05 2:35 
QuestionSet File Access (Read/ReadWrite/Write) Pin
M-20006-Nov-05 23:59
M-20006-Nov-05 23:59 

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.