To expand on Joe's solution, the input doesn't have to be an array. It can be an IEnumerable<T>, allowing you to pass any source of data. And once you do that, it starts looking like it should be an extension method. Furthermore, rather than always assuming that there will be as many items in the collection as there are input parameters, sometimes it's convenient to allow mismatches in numbers.
public static void AssignTo<T>(this IEnumerable<T> source, out T dest1, out T dest2)
{
using (var e = source.GetEnumerator())
{
dest1 = e.MoveNext() ? e.Current : default(T);
dest2 = e.MoveNext() ? e.Current : default(T);
}
}
Then this code:
string x, y;
"x".Split(',').AssignTo(out x, out y);
Console.WriteLine(x + ", " + y);
"x,y".Split(',').AssignTo(out x, out y);
Console.WriteLine(x + ", " + y);
"x,y,z".Split(',').AssignTo(out x, out y);
Console.WriteLine(x + ", " + y);
will output:
x,
x, y
x, y
Why would you ever want to allow the wrong size list passed in? Let's say you're parsing query strings. In Python you would want to say key, value = query.split('=') but that won't work because key is a valid query and you could get key=value=value too, both of which would cause an exception. Ordinarily you'd have to write
string[] kv = query.Split('=');
string key = kv[0];
string value = kv.Length > 1 ? kv[1] : null;
but instead you can just write
string key, value;
query.Split('=').AssignTo(out key, out value);
If you require the exact number of arguments though, just throw an exception instead of assigning null:
public static void AssignToExact<T>(this IEnumerable<T> source, out T dest1, out T dest2)
{
using (var e = source.GetEnumerator())
{
if (e.MoveNext()) dest1 = e.Current;
else throw new ArgumentException("Only 0 of 2 arguments given", "source");
if (e.MoveNext()) dest2 = e.Current;
else throw new ArgumentException("Only 1 of 2 arguments given", "source");
if (e.MoveNext()) throw new ArgumentException("More than 2 arguments given", "source");
}
}