Reputation: 499
What does the following method return ? An array of function returning HashSet ?
internal override Func<HashSet<char>>[] GetCompactableCharSets()
{
return new Func<HashSet<char>>[0];
}
Upvotes: 1
Views: 173
Reputation: 205619
What does the following method return ?
By signature, this is a method that returns an array of functions with no arguments returning HashSet<char>
.
The concrete implementation returns an empty array described above.
Upvotes: 1