diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-16 09:16:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 09:16:18 +0100 |
commit | 91dd6da2ffceb10d768fdd4be4b11c2c31f0b0c8 (patch) | |
tree | 6570640636e41c4e473c6670def4b73360e54a02 /doc/classes/PackedByteArray.xml | |
parent | f763a2a3db509127df2eefee574b83e9b5eb9677 (diff) | |
parent | a3df26e5541905572c35791f2f10c6086c52e32d (diff) | |
download | redot-engine-91dd6da2ffceb10d768fdd4be4b11c2c31f0b0c8.tar.gz |
Merge pull request #43246 from HaSa1002/docs-lang-5
Docs: Port code examples to C# (M, N, O, P, Q, R)
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 4a6893879d..91d066260b 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -135,10 +135,16 @@ </return> <description> Returns a hexadecimal representation of this array as a [String]. - [codeblock] + [codeblocks] + [gdscript] var array = PackedByteArray([11, 46, 255]) print(array.hex_encode()) # Prints: 0b2eff - [/codeblock] + [/gdscript] + [csharp] + var array = new byte[] {11, 46, 255}; + GD.Print(array.HexEncode()); // Prints: 0b2eff + [/csharp] + [/codeblocks] </description> </method> <method name="insert"> |