Tim said:
The person who told you that simply did not understand what you were
asking. ANYTHING available to VB.Net is available to C#. It's just
spelled differently.
While I agree that the person advising Ned was probably failing to
understand or provided bad advice, it is not true that anything
available in VB.NET is available in C#. Any of the .NET Framework types
are available, but there are language and CLR features available only
via VB.NET.
Examples include:
– Default instances
– Event subscription via method declaration
– Named indexer properties
– Exception filtering
– Late-binding (coming soon in C# 4.0!
![Smile :) :)](/styles/default/custom/smilies/smile.gif)
)
I have a vague recollection of some specific multi-dimensional feature
for indexer properties not supported in C#, but at the moment can't
recall exactly what that was.
And the above is definitely not a complete list. Even as I write this,
I can think of other stuff (particularly language features).
Pete