ErrorCannot implicitly convert type 'string[_]' to 'string'
ErrorCannot implicitly convert type 'string[]' to 'string'Hvordan gør man det?
Jeg har lavet en
StringBuilder report = new StringBuilder();
som jeg gerne vil bruge som
mail.Body = Reports.Autoprint(congregation).Split('\n');
(henviser til ovenstående stringbuilder)
Og får ovenstående fejl. Hvad gør jeg for at få kunne bruge report?
