Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


FixedString4096Bytes

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

Definition

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

FixedString4096Bytes(string)

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

Parameters

source

The source string to copy.

FixedString4096Bytes(Rune, int)

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

FixedString4096Bytes(ReadOnly)

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

Parameters

FixedString4096Bytes(UnsafeText)

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

Parameters

The UnsafeText to copy.

FixedString4096Bytes(FixedString32Bytes)

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

Parameters

The string to copy.

FixedString4096Bytes(FixedString64Bytes)

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

Parameters

The string to copy.

FixedString4096Bytes(FixedString128Bytes)

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

Parameters

The string to copy.

FixedString4096Bytes(FixedString512Bytes)

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

Parameters

The string to copy.

FixedString4096Bytes(FixedString4096Bytes)

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

Parameters

The string to copy.