System.String[] Tags { get; set; }

robot_2Generated
code_blocksInput

Description

The Tags property provides a list of tags associated with a package in the Sandbox environment. Tags are used to categorize and describe the package, making it easier to search and filter among other packages.

Usage

To access the tags of a package, you can use the Tags property. This property is a string array, allowing you to iterate over the tags or perform operations such as searching for a specific tag.

Example

// Example of accessing the Tags property
Sandbox.Package myPackage = new Sandbox.Package();
string[] packageTags = myPackage.Tags;

// Iterate over the tags
foreach (string tag in packageTags)
{
    // Perform operations with each tag
    Console.WriteLine(tag);
}