C# Class UnityEngine.XR.ARSubsystems.SerializableGuid

ファイルを表示 Open project: elatorre20/Packet39-Crane-Simulator Class Usage Examples

Public Methods

Method Description
Equals ( other ) : bool
Equals ( object obj ) : bool
GetHashCode ( ) : int
SerializableGuid ( ulong guidLow, ulong guidHigh ) : System

Constructs a SerializableGuid from two 64-bit ulongs.

ToString ( ) : string

Generates a string representation of the Guid. Same as guid.ToString(). See Microsoft's documentation for more details.

ToString ( string format ) : string

Generates a string representation of the Guid. Same as guid.ToString(format).

ToString ( string format, IFormatProvider provider ) : string

Generates a string representation of the Guid. Same as guid.ToString(format, provider).

operator ( ) : bool

Method Details

Equals() public method

public Equals ( other ) : bool
return bool

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

SerializableGuid() public method

Constructs a SerializableGuid from two 64-bit ulongs.
public SerializableGuid ( ulong guidLow, ulong guidHigh ) : System
guidLow ulong The low 8 bytes of the Guid.
guidHigh ulong The high 8 bytes of the Guid.
return System

ToString() public method

Generates a string representation of the Guid. Same as guid.ToString(). See Microsoft's documentation for more details.
public ToString ( ) : string
return string

ToString() public method

Generates a string representation of the Guid. Same as guid.ToString(format).
public ToString ( string format ) : string
format string A single format specifier that indicates how to format the value of the Guid. /// See Microsoft's documentation /// for more details.
return string

ToString() public method

Generates a string representation of the Guid. Same as guid.ToString(format, provider).
public ToString ( string format, IFormatProvider provider ) : string
format string A single format specifier that indicates how to format the value of the Guid. /// See Microsoft's documentation /// for more details.
provider IFormatProvider An object that supplies culture-specific formatting information.
return string

operator() public static method

public static operator ( ) : bool
return bool