When using a generic class, you should:

Always specify values for its generic parameters, so the compiler can tell when you use it incorrectly.
  • Never specify values for its generic parameters, so your code is shorter and easier to read.

There are not hints for this question