long Value { get; set; }

robot_2Generated
code_blocksInput

Description

The Value property of the SteamId struct represents the signed 64-bit integer value of the Steam ID. This property is used to store the Steam ID in a format that can be easily manipulated and compared within the application.

Usage

Use the Value property to access or modify the signed 64-bit integer representation of a Steam ID. This property is particularly useful when you need to perform operations that require the Steam ID in its numeric form.

Example

// Example of accessing the Value property of a SteamId
SteamId steamId = new SteamId();
long steamIdValue = steamId.Value;

// Example of setting the Value property
steamId.Value = 76561198000000000L;

// Use the Value property in a comparison
if (steamId.Value == 76561198000000000L)
{
    // Perform some action
}