tags:

views:

58

answers:

1

Doesn't anyone use the dictionary member access expression? (a.k.a. the bang operator) If so, in what scenarios?

http://msdn.microsoft.com/en-us/library/aa712034%28VS.71%29.aspx

+1  A: 

This construction is used in custom collections with indexers, like default property.

myCollection.Item("10") are apparently equivalent to myCollection!10...

really looks ugly.

serhio