Is it considered ‘good practice’ to re-use objects in c#.
For example:
Say you have a class called Anima and create an oject of type animal called monkey:
Animal monkey = new Animal(paramA);
monkey = new Animal(paramB);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yep, that sound about right. The previous instance you now lose reference to should be caught up in the next Garbage Collection cycle.