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 async-enabled C#?

JavaScript:

function ReturnItAsync(message, callback) {
    setTimeout(function(){ callback(message); }, 1000);
}

C#-5.0:

public static async Task<string> ReturnItAsync(string it) {
    //return await ... ?
}
link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

AsyncCTP has TaskEx.Delay. This wraps timers in your task. Note, that this is not production-ready code. TaskEx will be merged into Task when C# 5 arrives.

private static async Task ReturnItAsync(string it, Action<string> callback)
{
    await TaskEx.Delay(1000);
    callback(it);
}

Or if you want to return it:

private static async Task<string> ReturnItAsync(string it, Func<string, string> callback)
{
    await TaskEx.Delay(1000);
    return callback(it);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.