.NET Tip: Returning Multiple Objects from a Single Method Call

What happens when you need to return more than one value from a method call? One solution is for your method to return a complex data type, but this may not really fit what you need or may be overly complex. Another option is to return values through the parameters to the method. This article shows you how.