DEV Community

Cover image for Future of C# Event: Submit your questions here!
melaniemckenna
melaniemckenna

Posted on

Future of C# Event: Submit your questions here!

About the Event

Join us for a fantastic session with Mads Torgersen as we cover the new features of C#9.0, the future of the language and some of the amazing features built for you.

We have limited time, but we'd love to get your questions answered. If you see a question already posed below you want to see answered, please help us prioritize by adding a heart.

What now?

  1. 🗓 Register here for the event and review our Code of Conduct.
  2. 📬 Post your questions now in the comments to hear Mads' answers during the event.
  3. 📺 Join us here at 2:00PM GMT on September 17th to see the live event!

Oldest comments (5)

Collapse
 
conradakunga profile image
Conrad Akunga

I have concerns that the rate at which C# and - the .NET platform in general - is developing faster than developers are able to keep up with. There are so many changes, many of them fundamental that developers, especially new ones have no idea how to proceed. What, if any, plans do you have to address the stability of the language and underlying platform.

Collapse
 
greyparrotdev profile image
greyparrotdev

Are the plans to make null conditional (object?.thing) and null coalescent (??, ??=) operators more consistent with the behaviour of boolean null comparison? (e.g.) If the '==' operator is overloaded on specific objects to treat them as null and return a true for null comparison (even when they aren't actually).

Imho, given that both operators are essentially syntactic sugar over comparison with null, it makes sense to have them run the the overloaded logic for the == operator if one exists for the object.

C# after all is a very cohesive language ;-)

Collapse
 
karnik_mandar profile image
Mandar Karnik

Its regarding init; Can We use set; get; init; altogether?

Collapse
 
greyparrotdev profile image
greyparrotdev

Might there be a case for using TypeScript instead C# as the primary templating language for Blazor to encourage faster adoption for frontend developers?

Collapse
 
abiolashobande profile image
AbiolaShobande

I'm really interested to know what is the cost of record vs class, if any?