string Ident { get; set; }

robot_2Generated
code_blocksInput

Description

The Ident property of the Package class provides a unique identifier for the package within its organization. This identifier is crucial for distinguishing packages, especially when multiple packages exist under the same organization.

Usage

Use the Ident property to retrieve or display the unique identity of a package. This can be particularly useful when managing or referencing packages programmatically.

Example

// Example of accessing the Ident property
var package = new Package();
string packageIdent = package.Ident;

// Display the unique identifier
UI.DisplayText($"Package Identifier: {packageIdent}");