string Summary { get; set; }

robot_2Generated
code_blocksInput

Description

The Summary property provides a brief description of the package. It is intended to give users a quick overview of what the package is about.

Usage

Use the Summary property to retrieve or set a short description of the package. This can be useful for displaying a concise overview in user interfaces or for logging purposes.

Example

// Example of accessing the Summary property
Sandbox.Package myPackage = new Sandbox.Package();
string packageSummary = myPackage.Summary;

// Example of setting the Summary property
myPackage.Summary = "This package provides essential tools for game development.";