Click here to Skip to main content
15,909,051 members

Comments by TheRedEye (Top 8 by date)

TheRedEye 18-Jan-22 3:39am View    
Right, but I didn't know if there's an underlying use of a dictionary within the ObservableCollection, since the rest of the stack trace indicates the DataGrid.
TheRedEye 20-Jun-20 2:54am View    
Thanks Gerry. Your last statement sounds contradictory unless I'm misunderstanding. Aren't the EF entities the Model in the V-VM-M-DAL? And aren't the custom POCOs the viewmodels in the V-VM-M-DAL?
TheRedEye 31-Aug-18 10:43am View    
Yes, its unmanaged code.Thanks Richard, unmanaged dll is what I should have been googling help with.
TheRedEye 30-Aug-18 5:36am View    
All the searched examples that show refection as the solution make use of .Net assemblies. This DLL isn't a .net assembly, it's LabView made library.
TheRedEye 4-Nov-15 7:17am View    
So in the above example, please correct me I'm wrong with any of this.

ListOfThings and MyItems are pointers to the same object in the heap. So calling FreeAndNil(ListOfThings) will also free MyItems. And MyItems is the parent and owner of every instance of AnItem. So when MyItems is freed, then all the instances of AnItem are also freed. Is this correct?