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 ... ?
}