Hi, If I create the variable with type of a class, what is the actual value I will initialize it with? I mean - the int is initialized with value of that type that is number. But in the terms of technical precision, what happens when I create new instance of class?
class a
{
}
class b
{
a InstanceOfA;
InstanceOfA=new (); //which what I initialize the variable?
}
Hopefully you will get my point, thanks