Merge pull request #99089 from Mickeon/documentation-truth-csharp-rabbit-hoole

Fix C# boolean "Prints" comments in documentation
This commit is contained in:
Thaddeus Crews
2024-12-11 17:35:30 -06:00
7 changed files with 27 additions and 27 deletions

View File

@ -139,8 +139,8 @@
print("I" in "team") # Prints false
[/gdscript]
[csharp]
GD.Print("Node".Contains("de")); // Prints true
GD.Print("team".Contains("I")); // Prints false
GD.Print("Node".Contains("de")); // Prints True
GD.Print("team".Contains("I")); // Prints False
[/csharp]
[/codeblocks]
If you need to know where [param what] is within the string, use [method find]. See also [method containsn].