unsupportedIdentifier
Value returned by SystemInfo string properties which are not supported on the current platform.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public const string unsupportedIdentifier = "n/a"
Examples
using UnityEngine;using System.Collections;public class NewBehaviourScript : MonoBehaviour{ void Start() { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } }}