Description
The Get
method retrieves an Achievement
object from the AchievementCollection
by its name. This method is useful for accessing specific achievements within a collection, allowing you to query and manipulate achievement data based on the achievement's name.
Usage
To use the Get
method, you need to have an instance of AchievementCollection
. Call the method with the name of the achievement you want to retrieve. Ensure that the name provided matches exactly with the name of the achievement stored in the collection.
Example
// Assume 'achievementCollection' is an instance of AchievementCollection
string achievementName = "FirstWin";
Achievement achievement = achievementCollection.Get(achievementName);
if (achievement != null)
{
// Achievement found, proceed with operations
Console.WriteLine($"Achievement: {achievement.Name} - {achievement.Description}");
}
else
{
// Handle the case where the achievement is not found
Console.WriteLine("Achievement not found.");
}