Fix C# examples in documentation

- Fix documentation after C# renames.
- Add missing `partial` in C# class declarations.
- Change `delta` parameter type to `double` in C#.
- Ensure parameters match base declaration.
- Use `$` string interpolation in C#.
- Fix invalid or outdated C# code.
- Changed some examples to follow our style guide more closely.
This commit is contained in:
Raul Santos 2023-01-31 18:21:09 +01:00
parent 8612c12be6
commit 7eb8325180
No known key found for this signature in database
GPG key ID: B532473AE3A803E4
35 changed files with 295 additions and 278 deletions

View file

@ -223,7 +223,7 @@
put_data("Hello world".to_utf8())
[/gdscript]
[csharp]
PutData("Hello World".ToUTF8());
PutData("Hello World".ToUtf8());
[/csharp]
[/codeblocks]
</description>