vb.net

P

prasad_chandi

what is difference between vb 6.0 and vb.net in the matter of passing of members by defaultly?


**********************************************************************
Sent via Fuzzy Software @ http://www.fuzzysoftware.com/
Comprehensive, categorised, searchable collection of links to ASP & ASP.NET resources...
 
G

Guest

The main difference comes in passing reference objects. In VB6, a copy of the object was created. In VB.NET only a pointer to the object is created,. Therefore, you can change the properties of a reference object in VB.NET and have it reflect back, just not the actual object for another object.

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top