-
|
I'm probably doing something wrong but is there a way to reduce the angle brackets in such scenarios? I'm seeing methods that return a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Normally, the answer is to introduce strong typing, e.g in stead of |
Beta Was this translation helpful? Give feedback.
Normally, the answer is to introduce strong typing, e.g in stead of
Dictionary<string, List<string>>you may want to doMyEmployeeRegistryor something similar. So maybe wrap theList<something>into a record or a value object. It won't remove all the brackets, but it should reduce their number to a degree.