• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

C# query... async-everything

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    C# query... async-everything

    The modern async stuff in C# is pretty cool, but async 'infects' code a bit like GPL - anything calling an async method is typically async too unless it needs to 'collapse' using await.
    So every method ends up returning Task<whatever you want to return> and being called MethodNameAsync.

    I was wondering if C# will move to make that implicit at some point because it leads to pretty ugly code and more typing. Anyone on the bleeding edge of C# to know? I noticed today that you can have a console app without a main() method so it seemed plausible.
    Originally posted by MaryPoppins
    I'd still not breastfeed a nazi
    Originally posted by vetran
    Urine is quite nourishing

    #2
    I wouldn't say I was on the bleeding edge, but I did read this

    Implicit async/await · Discussion #5469 · dotnet/csharplang · GitHub

    I know what you mean about the extra typing and almost everything ends up being async anyway.

    Comment


      #3
      Having to name your methods xxxAsync seems particularly kludgy to me (I'm not sure if this is required or just encouraged).
      It just seems like a keyword modifier could be used to imply you are returning Task<whatever>.
      It IS a paradigm shift in the whole language.
      Originally posted by MaryPoppins
      I'd still not breastfeed a nazi
      Originally posted by vetran
      Urine is quite nourishing

      Comment


        #4
        You don't have to name them xxxxAsync - if you do im buggered

        Comment


          #5
          IMO adding Async at the end of a method name is a hangover from when it was implemented and you had to use a different method name to get the dam thing to compile. Dropping Async if their is no none async alternative is acceptable.
          Make Mercia Great Again!

          Comment


            #6
            Originally posted by BlueSharp View Post
            IMO adding Async at the end of a method name is a hangover from when it was implemented and you had to use a different method name to get the dam thing to compile. Dropping Async if their is no none async alternative is acceptable.
            I hadn't seen that but it would make sense as the compiler gets smarter and smarter. Currently doing all this C#10 NRTs stuff and it's quite impressive, the compiler knows at any point in code if a given variable can be null or not based on if you checked, etc.
            Originally posted by MaryPoppins
            I'd still not breastfeed a nazi
            Originally posted by vetran
            Urine is quite nourishing

            Comment

            Working...
            X