I am looking at MSDN docs about List.GetEnumerator.
The signature of the C # method is said to be:
public List<(Of <(<'T>)>)>..::..Enumerator GetEnumerator()
I expected this much simpler signature:
public List<T>.Enumerator GetEnumerator()
What does their signature mean, with all punctuation and the keyword "Of"?
Change . Well, I think if no one saw this syntax, then the MSDN docs are just a little bit wrong, and that’s it.
source
share