MemorySecretToBytes Method |
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
ExamplesMemorySecret secret = new MemorySecret()
{
GameID = 14129,
TargetGame = Game.Ages,
Memory = Memory.ClockShopKingZora,
IsReturnSecret = true
};
byte[] data = secret.ToBytes();
See Also