I got something like this:
public [What Here?] GetAnything() { Hello hello = new Hello(); Computer computer = new Computer(); Radio radio = ne
May be you need "dynamic" type?
public dynamic GetAnything() { Hello hello = new Hello(); Computer computer = new Computer(); Radio radio = new Radio(); return /*what boject you needed*/ ;`enter code here` }