C# is a high level, general-purpose, garbage-collected and object-oriented programming language created by Microsoft.
274
votes
5answers
19k views
What are the correct version numbers for C#?
What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5?
[This question is primarily to aid those who are searching for an answer using an incorrect ...
114
votes
4answers
4k views
C# 5 async CTP: why is internal “state” set to 0 in generated code before EndAwait call?
Yesterday I was giving a talk about the new C# "async" feature, in particular delving into what the generated code looked like, and the GetAwaiter() / BeginAwait() / EndAwait() calls.
We looked in ...
23
votes
6answers
4k views
How does C# 5.0's async-await feature differ from the TPL?
I don't see the different between C#'s (and VB's) new async features, and .NET 4.0's Task Parallel Library. Take, for example, Eric Lippert's code from here:
async void ...
22
votes
6answers
8k views
13
votes
0answers
685 views
ECMA-334 (C# Language Specification) v. 5.0 [closed]
Does anyone know when the 5th version of ECMA-334 (C# Language Specification) will be available?
I guess they are updating the standard for the upcoming C# version 4.0.
12
votes
2answers
307 views
Using async-await on .net 4
I'm currently starting to create an application that would profit a lot from C# 5's async-await feature. But I'm not sure which version of VS and of the async runtime to use.
Looking at OS popularity ...
12
votes
8answers
1k views
What's a good non-networked example of the new C# Async feature?
Microsoft just announced the new C# Async feature. Every example I've seen so far is about asynchronously downloading something from HTTP. Surely there are other important async things?
Suppose I'm ...
10
votes
2answers
2k views
C# 5.0 async/await feature and Rx - Reactive Extensions
I am wondering what do the new C# 5.0 asynchronous features mean for Rx - Reactive Extensions? It seems to be not a replacement but they seem to overlap - Task and IObservable.
9
votes
4answers
3k views
How would I run an async Task<T> method synchronously?
I'm learning about async/await, and ran into a situation where I need to call an async method synchronously. How can I do that?
Async method:
public async Task<Customers> GetCustomers()
{
...
8
votes
4answers
305 views
Windows Developer Preview C# version - features missing?
I've recently installed Windows 8 Dev preview, though I've ran into quite a few issues. Looking at the new C# API, I can say some features are missing. For example, I cannot find a wait to read a file ...
6
votes
1answer
131 views
DataContractSerializer in WinRT
I was practicing the WinRT API but encountered some problems need your help.
I want to try the DataContractSerializer and reference this site:
http://winrtstoragehelper.codeplex.com/
The code:
...
6
votes
1answer
308 views
Nonblocking sleep in C#5.0 (like setTimeout in JavaScript)
What is the analog of JavaScript's setTimeout(callback, milliseconds) for the C# in a new "async" style?
For example, how to rewrite the following continuation-passing-style JavaScript into modern ...
5
votes
3answers
257 views
C# 5 async/await thread mechanics feel wrong?
Why have the calling thread walk into the async method until the inner 'await'?
Isn't it cleaner to just spawn a thread as soon as an async method is called. That way you know for sure that the async ...
5
votes
3answers
1k views
Why does WebClient.DownloadStringTaskAsync() block ? - new async API/syntax/CTP
For some reason there is a pause after the program below starts. I believe that WebClient().DownloadStringTaskAsync() is the cause.
class Program
{
static void Main(string[] args)
{
...
4
votes
1answer
120 views
How to await an object inside IObservable with a specific property value?
To clarify, i have a method:
public static IObservable<Node> GetNodes()
{
var computers = GetComputersInLan();
return computers.Select(computerAddress => ...
4
votes
3answers
450 views
C# async methods still hang UI
I have these two methods, that I want to run async to keep the UI responsive. However, it's still hanging the UI. Any suggestions?
async void DoScrape()
{
var feed = new Feed();
...
4
votes
3answers
436 views
C#5 AsyncCtp BadImageFormatException
Please help me with this one, I've been writing a console applicaiton using the AsyncCtpLibrary and the C#5 ctp compiler. First time I got to actually running a code which awaits, I got this:
...
4
votes
1answer
476 views
Iterators in VB.NET vNext, and limitations of iterators in C#
I just saw on the Async CTP website that the next version of VB.NET will have iterators. I guess they included iterators because the rewriting process is similar to the one used for the new ...
3
votes
2answers
253 views
Aync/await in web browser or in node.js?
Is there any attempt to bring async/await feature from C# 5.0 to any language which can be compiled to JavaScript (such as CoffeScript)? (So it can be used either in web browser or in node.js.)
3
votes
3answers
164 views
What are the syntax enabling patterns in C#?
There are several pattern-features of C# language, i.e. classes need not derive from a specific interface; but rather implement a certain pattern in order to partake in some C# syntax/features.
Let's ...
3
votes
2answers
286 views
C#5 asynch : how is resumption from await implemented
I've been reading Eric Lippert's blog posts on Asynchrony in C# 5 (part 4 being particular relevant) and have watched Anders PDC10 talk on the subject and I'm unclear on how continuations from ...
3
votes
1answer
302 views
How does C# 5.0 async work?
I'm trying to grok how C# 5's new async feature works. Suppose I want to develop an atomic increment function for incrementing an integer in a fictitious IntStore. Multiple calls are made to this ...
2
votes
1answer
91 views
Await in catch block
I have the following code:
WebClient wc = new WebClient();
string result;
try
{
result = await wc.DownloadStringTaskAsync( new Uri( "http://badurl" ) );
}
catch
{
result = await ...
2
votes
2answers
172 views
“Iterating” over an async method
A few related questions about the async CTP:
I can iterate over an Iterator Block (an IEnumerable<T> yield-returning T) using GetEnumerator() and then enumerator methods MoveNext(), and ...
2
votes
2answers
314 views
await/async vs. “classic” asynchronous (callbacks)
So the new async CTP is very cool; it makes my life a lot easier not having to write named callback methods and makes the intent of the methods a lot clearer.
Now that I've gotten to play with it a ...
2
votes
1answer
188 views
Use of lock keyword and the new async functionality of C# 5.0
Is it still necessary to use the lock keyword on resources like SQL Compact database in methods called with async (AsyncCtpLibrary.dll)? As i understand from the talk given by Anders, the async ...
2
votes
1answer
191 views
How to force async child overrides in C# 5.0
I'm working on a system in which multiple client objects are expected to implement a particular function via an interface, and I want that function to run asynchronously with continuations (I'm ...
2
votes
1answer
463 views
How to write C# 5 async?
I have the following scenario:
When a command is inputted (for test, it's a console application, when it's ready, I hope it will be a WebService) I execute some code, and when further user input is ...
2
votes
3answers
270 views
multiple parallel async calls with await in async ctp
as far as i know when runtime come across the statement below it wraps the rest of the function as a callback to the method which is invoked asynchronously (someCall() in this example). in this case ...
2
votes
1answer
274 views
Using C# 5 async feature in Linqpad
Is it possible to use C# 5 async features in Linqpad snippets? Does anyone know of any hack/beta which allows you to do it?
2
votes
2answers
310 views
How does C# 5 async return to main thread?
I was watching a vid about Async CTP and saw that if you call await from e.g. main thread , then the execution will continue from main thread when the work is completed.
e.g
//called from main ...
2
votes
0answers
493 views
Cool coding tricks with the new C# async await operator in C# 5.0
Everyone has seen Anders Hejlsberg demonstrate the new C# 5.0 feature for asynchronous programming. He demonstrated how he ran network stuff in the background and the results being pushed into a ...
2
votes
1answer
422 views
Async CTP - Task timeout question
I'm reading through the TAP Whitepaper, and am confused by this sample given for implementing a timeout on page 22:
"Consider a UI application which wants to download an image and disable the UI ...
2
votes
1answer
797 views
is async “all” there is to C# 5.0? [closed]
Yes, I know async and friends does a lot behind the scenes, but how about "clean up" items (WPF support?) from the various wish lists? Or are there other C# 5.0 features that will be coming?
1
vote
1answer
33 views
In C# 5 what is the utility of the new async instruction
In the C# 5 – await and async combination - I understand the await instruction. But why should I write the async instruction? Shouldn't the compiler be able to automatically detect all async method?
1
vote
1answer
25 views
Encapsulating a sync method with async CTP doesn't work
Last year, I wrote a web API library with classic synchronous and asynchronous methods. I'm now trying to add TaskAsync methods using the new C# Async CTP 3.
I wrote this simple code to encapsulate ...
1
vote
2answers
81 views
progress tracking of multiple async calls
There is a method which gets a server response with
var response = (HttpWebResponse)await request.GetResponseAsync();
There's additional code to set up the request. I wrapped this in an async ...
1
vote
2answers
148 views
Windows Phone 7 await inside foreach C# 5.0 Async
I'm using the C# async CTP to call some remote functions that return me a URI, I have the following code:
public async Task<Uri> GetUriAsync(string service, string endpoint)
{
...
1
vote
1answer
131 views
Async generic delegate in C# 5.0
With Iterators, the following generic delegate is possible:
public delegate IEnumerable<TOut> MyDelegate<TIn>(TIn param1);
With the new async/await in C# 5.0 CTP, I expect to be able to ...
1
vote
1answer
136 views
Is it possible to implement the Yin-Yang puzzle in C# 5.0 using async?
The puzzle, implemented in Scheme, is as follows:
(let* ((yin
((lambda (cc) (display #\@) cc) (call-with-current-continuation (lambda (c) c))))
(yang
((lambda (cc) (display #\*) cc) ...
1
vote
2answers
186 views
Why return type of async must be void, Task or Task<T>
I am trying get my hands dirty with async CTP and I noticed that the compiler complains about the async return type. What is the problem with other types?
A simple demo
static void Main(string[] ...
1
vote
3answers
208 views
Using an OleDbDataAdapter on a background thread causes my UI to not update correctly?
I have an app where users can select an Excel file, that excel file is read using an OleDbDataAdapter on another thread, and once it is finished being read it updates the CanExecute property of a ...
1
vote
2answers
127 views
usage of await in server side
I know that async library makes asynchronus implementations really easy when you deal with UI. But I can not see any server side usages of it where it can improve performance. In which server side ...
1
vote
1answer
365 views
Continuations using Async CTP
Is it possible to use Async CTP to emulate continuations and tail recursion?
I'm thinking something along the lines of:
async Task Loop(int count)
{
if (count == 0)
retrun;
await ...
1
vote
3answers
735 views
Asynchrony in C# 5.0: How does Eric Lippert's example work?
I'm reading the great article series on Eric Lippert's blog about C#5's new asynchrony features. There he uses an example of a method fetchting documents from a remote location and, once retrieved, ...
1
vote
2answers
284 views
C#5/ Task Library will it rewrite my method calls?
I need to get some stuff sorted out about all this async stuff.
Let's say I want to load a big file. From my understanding there is a difference in just calling File.Read() and queuing this up into ...
1
vote
0answers
2k views
What new features are planned for c#5? [closed]
Possible Duplicates:
C# Language Speculation 4.5 / 5.0
What Features Do You Want To See in .NET 5/C# 5?
C#3 introduced LINQ.
C#4 included
Named and Optional Parameters
Dynamic
...
0
votes
2answers
60 views
Async on main method of console app
I am fairly novice in the async world, and I am trying to figure out how to make sure my main method of an console app actually runs async
class Program
{
static void Main(string[] args)
{
...
0
votes
1answer
97 views
Visual Studio 11 CTP3 bugs?
Visual Studio 11 Preview bugs?
I tryed to compile following examples and receive unexpected compilation errors.
Example 1:
async = System.Threading.Tasks.Task;
partial = ...
0
votes
2answers
76 views
Implementing stateless NPC scripting with coroutines/C# 5's await
I'm trying to implement NPC scripting using C#'s new await feature. This is my proof of concept.
In NPC.cs you can see this snippet:
public async void Run(INPC npc)
{
npc.Say("Hello!");
...