How long to learn .NET???
Ok, as some of you are aware I am not a beginner programmer, and some of you know the amount of VB I know. However, I know zero .NET. How long would it take for me to learn, if I was learning 9 till 5 every day, .NET to a standard when I can write apps like I write at the moment using VB6...?
Strange question I know. But people at work want time scales on development and .NET *sigh*
I said about 4-6 months of learning and training...would that be aboot right or is that WAYYYY to much?
Woka
A badger is for christmas, not for life...goes well with apple sauce!
So, if I set to nothing then the Dispose method gets fired?
Does it have to be public? I don't like the idea of manually typing that code it just for an event...if I manually do it then when I set to nothing does it fire it again?
wolka
Re: A badger is for christmas, not for life...goes well with apple sauce!
So, if I set to nothing then the Dispose method gets fired?
No nothing gets fired until the GC collects the object.
Does it have to be public?
No it doesn't but there is no need for it if its not.
if I manually do it then when I set to nothing does it fire it again?
If you manually call the Finalize method then yes it will fire again when the GC collects unless you add the following line also:
GC.SuppressFinalize(Me)
Which tells the GC not to worry about it anymore and prevents it from firing again.