classref: Sync with current master branch (99a8ab7)

This commit is contained in:
Godot Organization
2024-12-28 03:20:51 +00:00
parent 1cfa7d8e0a
commit 7704954857
22 changed files with 146 additions and 88 deletions

View File

@@ -1231,7 +1231,7 @@ Returns the concatenation of ``parts``' elements, with each element separated by
.. code-tab:: csharp
var fruits = new string[] {"Apple", "Orange", "Pear", "Kiwi"};
string[] fruits = ["Apple", "Orange", "Pear", "Kiwi"];
// In C#, this method is static.
GD.Print(string.Join(", ", fruits)); // Prints "Apple, Orange, Pear, Kiwi"