This is a generic question about the responsibility of a class in downloading and parsing it's own members
and if this is considered good practice.
I have a now large program that downloads multiple objects from the internet and saves them into lists
I am trying to keep my main class as "clean"...
the normal syntax is
Dim Obj As MyClass
Obj.Initialize()
but i think this part can be optional if the developer will reset/create a new object
Obj.Initialize()
so the default code would be
Dim Obj As MyClass
and i saw that if me using a library .Initialize() it not necessary
how about a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.