C Sharp (C#) - Polymorphism and Abstract Classes
Given a list of objects
List<object> items = new() { 1, "two", 3, null, 4.5 };, which code snippet correctly sums only the integer values using type checking patterns?