I have a function that needs to return two strings. I've considered two different ways to do this:
string first = "this is first";
string second = "this is second";
KeyValuePair<string, string> ReturnPair()
{
return new KeyValuePair<string, string>(first, second);
}
string ReturnOne(out string other)
{
other = second;
return first;
}
I would like to use the KeyValuePair<> approach but I feel that I am misusing the purpose for which this object was created.
My questions:
- Is there a better way to return 2 strings in this example?
- Is there anything wrong with returning the KeyValuePair?
