vb.net

  • Thread starter Thread starter prasad_chandi
  • Start date Start date
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...
 
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
 
Back
Top