Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the member in brackets [...] when viewing in `Watch`?

As the below snapshot when debugging, I see members listed between brackets. What are they?

enter image description here

like image 790
Nam G VU Avatar asked Jun 30 '11 08:06

Nam G VU


1 Answers

Inside the brackets the actual runtime type of the object can be found. Outside the brackets the reference type can be found.

Difference Between Object Type and Reference Type

like image 98
Herr Kater Avatar answered Oct 20 '22 17:10

Herr Kater