A
ajit goel
Hi;
I have a question which respect to initialising and creating objects
in loops.Here are the 2 scenarios:
1.
###############################################################################
for (int i=0;i<5;i++)
{
object a= new object();
// do some work on the object
}
###############################################################################
or
2.
###############################################################################
object a;
for (int i=0;i<5;i++)
{
a= new object();
// do some work on the object
}
###############################################################################
Which would be more efficient and why??
Kind Regards;
Ajit Goel
I have a question which respect to initialising and creating objects
in loops.Here are the 2 scenarios:
1.
###############################################################################
for (int i=0;i<5;i++)
{
object a= new object();
// do some work on the object
}
###############################################################################
or
2.
###############################################################################
object a;
for (int i=0;i<5;i++)
{
a= new object();
// do some work on the object
}
###############################################################################
Which would be more efficient and why??
Kind Regards;
Ajit Goel