Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FixedString128Bytes

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

Definition

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

FixedString128Bytes(string)

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

Parameters

source

The source string to copy.

FixedString128Bytes(Rune, int)

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

FixedString128Bytes(ReadOnly)

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

Parameters

FixedString128Bytes(UnsafeText)

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

Parameters

The UnsafeText to copy.

FixedString128Bytes(FixedString32Bytes)

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

Parameters

The string to copy.

FixedString128Bytes(FixedString64Bytes)

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

Parameters

The string to copy.

FixedString128Bytes(FixedString128Bytes)

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

Parameters

The string to copy.

FixedString128Bytes(FixedString512Bytes)

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

Parameters

The string to copy.

FixedString128Bytes(FixedString4096Bytes)

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

Parameters

The string to copy.