Click or drag to resize

Secret.ToString Method

Returns a string that represents the current secret.

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public override string ToString()

Return Value

Type: String
A string that represents the current secret.
Remarks
Examples
This example demonstrates how to get secret string from a GameSecret.
C#
GameSecret secret = new GameSecret()
{
    TargetGame = Game.Ages,
    GameID = 14129,
    Hero = "Link",
    Child = "Pip",
    Animal = Animal.Dimitri,
    Behavior = ChildBehavior.BouncyD,
    IsLinkedGame = true,
    IsHeroQuest = false
};
string secretString = secret.ToString(secret);
// H~2:@ ←2♦yq GB3●( 6♥?↑6
See Also