Anonymous classes

  • Thread starter Thread starter No One
  • Start date Start date
N

No One

Does anyone know if or when anonymous class support will be added to C#?
 
No One said:
Does anyone know if or when anonymous class support will be added to C#?

Chances are they will not ever be added. The framework seems to be leaning
towards the anonymous method front moreso than interface based mechanisms
java uses.

I don't think anon. classes actually offer anything that makes them
worthwhile.
 
Daniel O'Connell said:
Chances are they will not ever be added. The framework seems to be leaning
towards the anonymous method front moreso than interface based mechanisms
java uses.

I don't think anon. classes actually offer anything that makes them
worthwhile.

I can think of many things they offer. Creating a concrete abstract class or
interface is one of the best.

I guess I missed something on anonymous methods. Do you mean anonymous
delegates?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top