Is there any difference in creation of objects , objA and
objB in the
following code?
public class MyClass
{
private object objA = new object();
private object objB;
public MyClass()
{
objB = new object();
}
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
Google Groups "C# Community" group.
To post to this group, send email to csharp googlegroups.com
To unsubscribe from this group, send email to
csharp-unsubscribe googlegroups.com
For more options, visit this group at http://gr
oups.google.com/group/csharp?hl=en
-~----------~----~----~----~------~----~------~--~---
|