Fix Task.Delay runtime error in WebAssembly C# runner - #59
Merged
Conversation
…lementation Co-authored-by: yamayu-dev <57430316+yamayu-dev@users.noreply.github.com>
…y behavior Co-authored-by: yamayu-dev <57430316+yamayu-dev@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix execution error with missing Task.Delay method
Fix Task.Delay runtime error in WebAssembly C# runner
Nov 25, 2025
Owner
|
@copilot 説明して下さい |
Contributor
Author
問題
解決策
動作修正後: await Task.Delay(1000); // エラーなしで実行(ただし実際の遅延はなし)
Console.WriteLine("Done");注意: WASM環境では実際の遅延は発生しません(no-op)。UIドキュメントにもこの制限を追記しました。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Task.Delaycompiles against reference assemblies but fails at runtime in single-threaded WASM: "Method not found: System.Threading.Tasks.Task System.Threading.Tasks.Task.Delay(int)"Changes
WasmHelpers.WasmTask.Delaythat returnsTask.CompletedTaskimmediately (all 4 overloads)Task.Delay→WasmHelpers.WasmTask.Delaybefore compilationArgumentOutOfRangeExceptionfor invalid values)Task.Delayruns but doesn't actually delayExample
Code that previously crashed:
Now runs successfully (delay is a no-op in WASM).
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.