Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FixedString32Bytes

Initializes and returns an instance of FixedString32Bytes with the characters copied from a string.
Read time 1 minuteLast updated 7 days ago

Definition

  • Type: Constructor
  • Namespace: Unity.Collections
  • Assembly: UnityEngine.ManagedKernelModule

FixedString32Bytes(string)

Initializes and returns an instance of FixedString32Bytes with the characters copied from a string.
[ExcludeFromBurstCompatTesting("Takes managed string")]public FixedString32Bytes(string source)

Parameters

source

The source string to copy.

FixedString32Bytes(Rune, int)

Initializes and returns an instance of FixedString32Bytes with a single character repeatedly appended some number of times.
public FixedString32Bytes(Unicode.Rune rune, int count = 1)

Parameters

rune

The Unicode.Rune to repeat.

count

The number of times to repeat the character. Default is 1.

FixedString32Bytes(ReadOnly)

Initializes and returns an instance of FixedString32Bytes with the characters copied from a string.
public FixedString32Bytes(NativeText.ReadOnly other)

Parameters

FixedString32Bytes(UnsafeText)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in UnsafeText other)

Parameters

The UnsafeText to copy.

FixedString32Bytes(FixedString32Bytes)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in FixedString32Bytes other)

Parameters

The string to copy.

FixedString32Bytes(FixedString64Bytes)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in FixedString64Bytes other)

Parameters

The string to copy.

FixedString32Bytes(FixedString128Bytes)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in FixedString128Bytes other)

Parameters

The string to copy.

FixedString32Bytes(FixedString512Bytes)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in FixedString512Bytes other)

Parameters

The string to copy.

FixedString32Bytes(FixedString4096Bytes)

Initializes and returns an instance of FixedString32Bytes that is a copy of another string.
public FixedString32Bytes(in FixedString4096Bytes other)

Parameters

The string to copy.