I'm having a bit of a brain freeze about calling an async process. I have my void main function, and I want to call an method from a third party dll which is only exists as an async method - I don't care it's async I just want to run it synchronously.
So how do I go about doing this? I had a quick look at How to call asynchronous method from synchronous method in C#? but it seems a little complex, having to worry about contextes etc. This should be easy right?
Thanks Thomas
>. At the end of the day I want to be able to call it like a normal method and loop through each item in the List and print it to screen.