private void List<string> removeDuplicates(
List<string> currentsites,
List<string> listintheformlevelsitesvisited)
{
}
I want to get two Lists but im getting error.
Many errors:
; expected
Identifier expected
invalid token )
invalid token >
Sysntax error (
Error 10 The type or namespace name ‘listintheformlevelsitesvisited’ could not be found (are you missing a using directive or an assembly reference?)
Error 9 The type or namespace name ‘removeDuplicates’ could not be found (are you missing a using directive or an assembly reference?)
All i wanted is a simple function that get two Lists. Whats wrong ?
A function can’t return
voidandList<string>at the same time.Remove one and it will be fine!