Y
Yehia A.Salam
Hello,
this is a little too basic but what's the difference between writing my code
in the initialization section and in the constructor section, I know that
the initialization parts gets executed first, but is there any other
differences :
public class Test: Control {
VScrollBar v;
v = new VScrollBar(); ??
Test(){
v = new VScrollBar(); ??
}
}
Thanks
Yehia
this is a little too basic but what's the difference between writing my code
in the initialization section and in the constructor section, I know that
the initialization parts gets executed first, but is there any other
differences :
public class Test: Control {
VScrollBar v;
v = new VScrollBar(); ??
Test(){
v = new VScrollBar(); ??
}
}
Thanks
Yehia