FixedString512Bytes
Initializes and returns an instance of FixedString512Bytes with the characters copied from a string.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Constructor
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
FixedString512Bytes(string)
Initializes and returns an instance of FixedString512Bytes with the characters copied from a string.
[ExcludeFromBurstCompatTesting("Takes managed string")]public FixedString512Bytes(string source)
Parameters
The source string to copy.
FixedString512Bytes(Rune, int)
Initializes and returns an instance of FixedString512Bytes with a single character repeatedly appended some number of times.
public FixedString512Bytes(Unicode.Rune rune, int count = 1)
Parameters
FixedString512Bytes(ReadOnly)
Initializes and returns an instance of FixedString512Bytes with the characters copied from a string.
public FixedString512Bytes(NativeText.ReadOnly other)
Parameters
FixedString512Bytes(UnsafeText)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in UnsafeText other)
Parameters
The UnsafeText to copy.
FixedString512Bytes(FixedString32Bytes)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in FixedString32Bytes other)
Parameters
The string to copy.
FixedString512Bytes(FixedString64Bytes)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in FixedString64Bytes other)
Parameters
The string to copy.
FixedString512Bytes(FixedString128Bytes)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in FixedString128Bytes other)
Parameters
The string to copy.
FixedString512Bytes(FixedString512Bytes)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in FixedString512Bytes other)
Parameters
The string to copy.
FixedString512Bytes(FixedString4096Bytes)
Initializes and returns an instance of FixedString512Bytes that is a copy of another string.
public FixedString512Bytes(in FixedString4096Bytes other)
Parameters
The string to copy.