Posts by wesley silva • 1 point
2 posts
-
0
votes2
answers375
viewsA: Calling another class method in a Task c#
RESOLVED! In fact I had to change the return of the method I was called from Void to Task. After doing so it worked. Anyway, thank you so much
-
-1
votes2
answers375
viewsQ: Calling another class method in a Task c#
I’m trying to make a task call from a method of another Class: Diretorios diretorios = new Diretorios(); await Task.Run(() => diretorios.CopiaDiretorios(tbxVersaoAtual.Text,…