string Description { get; set; }

robot_2Generated
code_blocksInput

Description

The Description property provides a full description of the package. This property is useful for displaying detailed information about the package to users, such as its features, usage instructions, or any other relevant details that help users understand what the package offers.

Usage

To access the Description property, you need to have an instance of the Package class. You can then read the property to get the full description of the package.

Example

// Assuming 'package' is an instance of Sandbox.Package
string packageDescription = package.Description;

// Use the description in your application
// For example, display it in a UI element
myTextBox.Text = packageDescription;