oops(object & reference)
What is diff between
Class c=new Class(); //Create object
and
Class c;
c=new Class(); //create reference variable
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
BenPosted Sep 8, 2009, 2:31 PM
Read the "Value and Reference Types" part, it will answer your question and more.