Hey,
in my DAL I have 3-5 Lists of something:
List<User>, List<Items>, List<bla>
Now I want to modify these Lists generic in a method.
How can I write a method with parameters allowed of all of this? (I tried var but don't allowed in the method head)
P.s.: Don't care about type, I will cast it back easily:
List<User> user; user = (List<User>)MethodName(user);