Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


implicit operator FixedString512Bytes

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

Definition

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

implicit operator FixedString512Bytes(FixedString512Byte)

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

Parameters

A FixedString128Bytes 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 FixedString128Bytes fs)

Parameters

A FixedString128Bytes to copy.

Returns

Type

Description

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

implicit operator FixedString128Bytes(FixedString128Byte)

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

Parameters

A string to copy.

Returns

Type

Description

FixedString128BytesA new FixedString128Bytes that is a copy of another string.