M
Mikael Janers
I've tried to find answer to this question on the net but without success,
so I hope someone here knows...
How can I know if c# actualy creates an instance of an object when I declare
a variable...
For example....
If I declare
private System.Collections.ArrayList m_aArray;
Then I dont have an instance of that object
But this declaretion
private System.Guid m_testId;
acctually results in an object..
I'm from the C++ school so this is very confusing to me, thanks for the
help!
// Mikael
so I hope someone here knows...
How can I know if c# actualy creates an instance of an object when I declare
a variable...
For example....
If I declare
private System.Collections.ArrayList m_aArray;
Then I dont have an instance of that object
But this declaretion
private System.Guid m_testId;
acctually results in an object..
I'm from the C++ school so this is very confusing to me, thanks for the
help!
// Mikael