Version: Unity 6.1 Alpha (6000.1)
LanguageEnglish
  • C#

UnsafeUtility.As

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static ref T As(ref U from);

Parameters

from The reference to an object of one type that you want to reinterpret as a reference of another type. Ensure the conversion is between compatible types to prevent runtime errors.

Returns

T A reference to the object interpreted as the target type.

Description

Performs an unsafe cast of a specified object to a different type.

The As method converts a reference of one type to another type. Use this method for direct type conversions, such as during low-level memory operations or when you interact with unmanaged code where type safety is not enforced.

Apply caution when you use this method. Improper casts may lead to runtime exceptions or undefined behavior if the types are incompatible. This method bypasses the usual type safety checks and provides flexibility but less safety.

using Unity.Collections.LowLevel.Unsafe;
using UnityEngine;

public class UnsafeUtilityAsExample : MonoBehaviour { enum ExampleEnum { First = 1, Second = 2, } struct SourceStruct { public int IntegerValue; }

struct TargetStruct { public ExampleEnum EnumValue; }

void Start() { SourceStruct source = new SourceStruct { IntegerValue = 2 };

// Use UnsafeUtility.As to convert the source struct to a target struct TargetStruct target = UnsafeUtility.As<SourceStruct, TargetStruct>(ref source);

// Output the converted value Debug.Log($"Converted value: {target.EnumValue}"); } }