Stop repeating yourself. If the type is already defined, you don’t need to write it twice.
// Old Way List> data = new List >(); // Pro Way (C# 9+) List > data = new();
Impact: It makes your code cleaner and easier to read, especially when dealing with complex generic types.
