I'm after an efficient way of detecting whether a List object has changed from one frame to the next.
List<int> intList = new List<int>();
I have my list as a member variable and will check to see if it has changed each Update() method call.
The only way I can think of is checking each element in the list to see if it has been changed/removed/added. This doesn't seem ideal?