"Tuple Return Type"

static (int Min, int Max) GetLimits(IReadOnlyCollection<int> values) {
	return (values.Min(), values.Max());
}


Code snippet taken from "Complete C# Quick Reference - C# 7".