Ich habe das folgende Objekt in einer Liste: public class DemoClass { public int GroupKey { get; set; } public string DemoString { get; set; } public object SomeOtherProperty { get; set; } } Jetzt möchte ich folgendes Wörterbuch daraus erstellen: Dictionary<int, List<DemoClass>> Ich...