Gets the raw secret data as a byte array
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic override byte[] ToBytes()
Public Overrides Function ToBytes As Byte()
Return Value
Type:
ByteA byte array containing the secret
ExamplesRingSecret secret = new RingSecret()
{
GameID = 14129,
Rings = Rings.PowerRingL1 | Rings.DoubleEdgeRing | Rings.ProtectionRing
};
byte[] data = secret.ToBytes();
See Also