2
Has a method that returns a tuple with two strings
.
The return I want to record in two different variables, only I’m having to call the method twice to pick one item at a time.
string retorno1 = SearchTerra(artista, musica).item1;
string retorno2 = SearchTerra(artista, musica).item2;
You’d have to do it by calling once only?