It has a method that returns a tuple with two strings
.
The return I want to write to two different variables, but I'm having to call the method twice to pick up one item at a time.
string retorno1 = SearchTerra(artista, musica).item1;
string retorno2 = SearchTerra(artista, musica).item2;
Would you like to do this by calling 1 time only?