Partial classes and Partial methods states:
Partial methods can be generic. Constraints are put on the defining partial method declaration, and may optionally be repeated on the implementing one. Parameter and type parameter names do not have to be the same in the implementing declaration as in the defining one.
Visually what are code examples of "Constraints are put on the defining partial method declaration, and may optionally be repeated on the implementing one."
and "Parameter and type parameter names do not have to be the same in the implementing declaration as in the defining one."
?
I don't know what the above 2 statements look like visually in code.