Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


implicit operator FixedString64Bytes

Returns a new FixedString64Bytes that is a copy of another string.
Read time 1 minuteLast updated 7 days ago

Definition

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

implicit operator FixedString64Bytes(FixedString64Byte)

Returns a new FixedString64Bytes that is a copy of another string.
public static implicit operator FixedString64Bytes(in FixedString32Bytes fs)

Parameters

A FixedString32Bytes to copy.

Returns

Type

Description

FixedString64BytesA new FixedString64Bytes that is a copy of the other string.

implicit operator FixedString128Bytes(FixedString128Byte)

Returns a new FixedString128Bytes that is a copy of another string.
public static implicit operator FixedString128Bytes(in FixedString32Bytes fs)

Parameters

A FixedString32Bytes to copy.

Returns

Type

Description

FixedString128BytesA new FixedString128Bytes that is a copy of the other string.

implicit operator FixedString512Bytes(FixedString512Byte)

Returns a new FixedString512Bytes that is a copy of another string.
public static implicit operator FixedString512Bytes(in FixedString32Bytes fs)

Parameters

A FixedString32Bytes to copy.

Returns

Type

Description

FixedString512BytesA new FixedString512Bytes that is a copy of the other string.

implicit operator FixedString4096Bytes(FixedString4096Byte)

Returns a new FixedString4096Bytes that is a copy of another string.
public static implicit operator FixedString4096Bytes(in FixedString32Bytes fs)

Parameters

A FixedString32Bytes to copy.

Returns

Type

Description

FixedString4096BytesA new FixedString4096Bytes that is a copy of the other string.

implicit operator FixedString32Bytes(FixedString32Byte)

Returns a new FixedString32Bytes that is a copy of another string.
[ExcludeFromBurstCompatTesting("Takes managed string")]public static implicit operator FixedString32Bytes(string b)

Parameters

A string to copy.

Returns

Type

Description

FixedString32BytesA new FixedString32Bytes that is a copy of another string.