I\'d like to write a method that can accept a type param (or whatever the method can figure out the type from) and return a value of this type so I don\'t have to cast the r
Start with this:
public interface Command { T execute(T parameter); }