I got something like this:
public [What Here?] GetAnything() { Hello hello = new Hello(); Computer computer = new Computer(); Radio radio = ne
You could use external class, set the properties types as you wish, then use it in your function.
public class MultipleOpjects { private List _ObjectOne; public List ObjectOne { get { return _ObjectOne; } set { _ObjectOne = value; } } private List _ObjectTwo; public List ObjectTwo { get { return _ObjectTwo; } set { _ObjectTwo = value; } } private object _ObjectThree; public object ObjectThree { get { return _ObjectThree; } set { _ObjectThree = value; } } } public MultipleOpjects GetAnything() { MultipleOpjects Vrble = new MultipleOpjects(); Vrble.ObjectOne = SomeThing1; Vrble.ObjectTwo = SomeThing2; Vrble.ObjectThree = SomeThing3; return Vrble; }