The Package
property of the AchievementOverview
class provides access to the Sandbox.Package
associated with the achievements. This property is used to identify the package that contains the achievements being overviewed.
The Package
property of the AchievementOverview
class provides access to the Sandbox.Package
associated with the achievements. This property is used to identify the package that contains the achievements being overviewed.
To access the Package
property, you need to have an instance of the AchievementOverview
class. This property is read-only and provides information about the package related to the achievements.
// Assuming you have an instance of AchievementOverview AchievementOverview achievementOverview = new AchievementOverview(); // Accessing the Package property Sandbox.Package package = achievementOverview.Package; // You can now use the package variable to access package-related information // For example, you might want to display the package name string packageName = package.Name; // Use packageName as needed