[Solved] Why left-hand side of an assignment must be a variable property or indexer? [closed]
When writing test().xyz = xxx you first execute test which onbiously returns some instance of ArrayList (btw. you should consider to use List<T> instead nowadays, which is strongly typed and thus safes you from casting every element in your list to its actual type). Now You can of course do what you want with that … Read more