Save() public méthode

public Save ( ) : bool
Résultat bool
Exemple #1
0
 private void Save()
 {
     if (worldmap.Save())
     {
         Message.Show("Saved successfully.", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     else
     {
         Message.Show("Failed to save.", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }