Click or drag to resize

RingSecretToBytes Method

Gets the raw secret data as a byte array

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public override byte[] ToBytes()

Return Value

Type: Byte
A byte array containing the secret
Examples
C#
RingSecret secret = new RingSecret()
{
    GameID = 14129,
    Rings = Rings.PowerRingL1 | Rings.DoubleEdgeRing | Rings.ProtectionRing
};
byte[] data = secret.ToBytes();
See Also