Problem This sample code works fine, but it looks awful. How would you improve this? data.Add(((Adress)(((OwnerIDList)owner.Adresses.Value)[0].Adress.Value)).FirstName.Value.ToString()); data.Add(((Adress)(((OwnerIDList)owner.Adresses.Value)[0].Adress.Value)).LastName.Value.ToString()); Why do we […]

Problem I’m learning Python, and found a fun little video on YouTube called “Learn Python through public data hacking”. In […]

Problem I have the following method: private void removeUnnecessaryLines(List<ScatterViewItem> list) { List<Line> remove = new List<Line>(); foreach (Line line in […]