Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FixedString64Bytes

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

Definition

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

FixedString64Bytes(string)

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

Parameters

source

The source string to copy.

FixedString64Bytes(Rune, int)

Initializes and returns an instance of FixedString64Bytes with a single character repeatedly appended some number of times.
public FixedString64Bytes(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.

FixedString64Bytes(ReadOnly)

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

Parameters

FixedString64Bytes(UnsafeText)

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

Parameters

The UnsafeText to copy.

FixedString64Bytes(FixedString32Bytes)

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

Parameters

The string to copy.

FixedString64Bytes(FixedString64Bytes)

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

Parameters

The string to copy.

FixedString64Bytes(FixedString128Bytes)

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

Parameters

The string to copy.

FixedString64Bytes(FixedString512Bytes)

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

Parameters

The string to copy.

FixedString64Bytes(FixedString4096Bytes)

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

Parameters

The string to copy.