Skip to content

Commit 424d523

Browse files
authored
Merge pull request #11348 from Calinou/csharp-basics-net-9
Update C# basics for .NET 9
2 parents 2f9b4c0 + 36455d9 commit 424d523

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

tutorials/scripting/c_sharp/c_sharp_basics.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ and (re)visit the :ref:`Scripting section <doc_scripting>` of the
1212
step-by-step tutorial.
1313

1414
C# is a high-level programming language developed by Microsoft. In Godot,
15-
it is implemented with .NET 8.0.
15+
it is implemented with the modern .NET runtime.
1616

1717
.. attention::
1818

@@ -33,7 +33,7 @@ it is implemented with .NET 8.0.
3333
Prerequisites
3434
-------------
3535

36-
Godot bundles the parts of .NET needed to run already compiled games.
36+
Godot bundles the parts of .NET needed to run already-compiled games.
3737
However, Godot does not bundle the tools required to build and compile
3838
games, such as MSBuild and the C# compiler. These are
3939
included in the .NET SDK, and need to be installed separately.
@@ -43,6 +43,7 @@ version of Godot.
4343

4444
Download and install the latest stable version of the SDK from the
4545
`.NET download page <https://dotnet.microsoft.com/download>`__.
46+
Godot 4.5 requires .NET 8 or later, but exporting to Android requires .NET 9 or later.
4647

4748
.. important::
4849

@@ -355,8 +356,8 @@ You can read more about this error on the `C# language reference <https://learn.
355356
Performance of C# in Godot
356357
--------------------------
357358

358-
.. seealso::
359-
359+
.. seealso::
360+
360361
For a performance comparison of the languages Godot supports,
361362
see :ref:`doc_faq_which_programming_language_is_fastest`.
362363

@@ -419,8 +420,8 @@ the ``.csproj`` file located in the project root:
419420
...
420421
</Project>
421422
422-
As of Godot 3.2.3, Godot automatically downloads and sets up newly added NuGet
423-
packages the next time it builds the project.
423+
Godot automatically downloads and sets up newly added NuGet packages
424+
the next time it builds the project.
424425

425426
Profiling your C# code
426427
----------------------

0 commit comments

Comments
 (0)