I saw this signature on the ListView class:

public ListView..::.ListViewItemCollection Items { get; }

When I saw that, "What?!"

I searched "dot dot colon colon dot" and "..::." on Google with no result.

alt text

link|improve this question

77% accept rate
WoW who was the genius? – Robert Gould Nov 25 '08 at 6:52
Does it compile? The :: operator is the namespace alias operator, but the dots? I have no idea ... – Rune Grimstad Nov 25 '08 at 7:07
feedback

2 Answers

up vote 9 down vote accepted

That's not C#; that's JScript. In C#, it would be:

public ListView.ListViewItemCollection Items { get; }

It's a little different because ListViewItemCollection is an inner class of ListView.

I'm guessing that you saw this looking at ListView.Items Property (System.Windows.Forms).

If you look at the listing for all the other languages, they're all listed with the JScript syntax. You've found a documentation bug.

link|improve this answer
Yes, I was looking at the ListView.Items property. I suspected it was a bug, but when I saw the Columns property it was listed as "..::." too. Seems that the documentation generator has a bug :D Thank you! – yuku Nov 25 '08 at 7:39
feedback

ListViewItemCollection is a nested type of ListView, which means that in the code, the Collection class is defined inside of the ListView definition, like so:

public class ListView {
  public ListViewItemCollection Items {get;}

  public class ListViewItemCollection : IList {
    // more code here
  }
}

I would assume that it is coded this way just to keep their source tree a little bit cleaner. This way, all of the helper collection classes that are associated with the ListView control aren't scattered throughout the directory. Inner classes do have a few special characteristics, but none that I can imagine would apply here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.