docs: add overview documentation for CSharpWasm#134
Open
rabail-aamir wants to merge 3 commits intothoth-tech:mainfrom
Open
docs: add overview documentation for CSharpWasm#134rabail-aamir wants to merge 3 commits intothoth-tech:mainfrom
rabail-aamir wants to merge 3 commits intothoth-tech:mainfrom
Conversation
Oliver-Quail
requested changes
Sep 23, 2025
Collaborator
Oliver-Quail
left a comment
There was a problem hiding this comment.
Hi @rabail-aamir,
Firstly this PR is a really good base. I think a few minor changes are needed though and it will be ready
| - Your project folder CSharpWasmExpo requires either a local development environment or a hosting solution to function. | ||
|
|
||
| ## Build and Copy Process | ||
| You can create and distribute the artifacts through the following command which needs to be executed from the `CSharpWasm/` directory. |
Collaborator
There was a problem hiding this comment.
I would add a note here that tells Windows users to use this script with WSL or MINGW to run the script
Documentation/CSharpWasm.md
Outdated
Comment on lines
65
to
74
| const code = | ||
| using System; | ||
| class Program { | ||
| static void Main() { | ||
| Console.WriteLine("Hello from C#!"); | ||
| } | ||
| }; | ||
|
|
||
| const result = await globalThis.CSharpCodeRunner.CompileAndRun(code); | ||
| console.log(result); |
Collaborator
There was a problem hiding this comment.
I am not sure this code would actually work with the current implementation.
You should just be able to execute raw C# code and it should work, no Javascript required
…d corrected usage example
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.
Description
This PR adds documentation for the CSharpWasm implementation in SK Online.
The document (CSharpWasm.md) explains the project’s purpose, layout, prerequisites, build & copy process, browser usage, and troubleshooting.
This helps contributors understand how to run and extend the C# WebAssembly integration.
Type of change
expected)
How Has This Been Tested?
The document was reviewed locally for accuracy and formatting.
No code changes are included in this PR.
Testing Checklist
[✓ ] Verified Markdown renders correctly in GitHub preview.
[✓ ] Checked links, commands, and code snippets for correctness.
Checklist