ToString() public méthode

Convert the Outfit to a string, this is the same format as the GET used by the tibia.wikia outfiter
public ToString ( ) : string
Résultat string
Exemple #1
0
        public void RefreshImage()
        {
            Image oldImage = outfiterImageBox.Image;

            outfiterImageBox.Image = outfit.GetImage();
            if (oldImage != null)
            {
                oldImage.Dispose();
            }
            outfiterCode.Text = outfit.ToString();
        }
Exemple #2
0
 private void copyTextButton_Click(object sender, EventArgs e)
 {
     MainForm.mainForm.Invoke((MethodInvoker) delegate {
         Clipboard.SetText(outfit.ToString());
     });
 }