Description
The ValueUnsigned
property of the SteamId
struct provides the unsigned 64-bit integer representation of a Steam ID. This property is useful when you need to work with the Steam ID in its unsigned form, which can be beneficial for certain operations or when interfacing with systems that require unsigned integers.
Usage
To access the ValueUnsigned
property, you need to have an instance of the SteamId
struct. You can then retrieve the unsigned 64-bit integer value of the Steam ID by accessing this property directly.
Example
// Example of accessing the ValueUnsigned property
SteamId steamId = new SteamId();
ulong unsignedValue = steamId.ValueUnsigned;
// Use the unsignedValue as needed
// For example, logging or passing to a method that requires an unsigned long