So i want to name of the folders printed found in my executable location.
var foldersFound = Directory.GetDirectories(AppDomain.CurrentDomain.BaseDirectory, "test", SearchOption.AllDirectories);
Debug.Print(foldersFound);
However i get an error saying
Error CS1503 Argument 1: cannot convert from 'string[]' to 'string'
What am i doing wrong?