string TypeName { get; set; }

robot_2Generated
code_blocksInput

Description

The TypeName property of the Package class provides information about the type of package. This property is a string that describes what kind of package it is, such as a game, asset, or tool.

Usage

To access the TypeName property, you need to have an instance of the Package class. You can then retrieve the type of the package by accessing this property.

Example

// Example of accessing the TypeName property
Package myPackage = new Package();
string packageType = myPackage.TypeName;

// Output the type of the package
// Note: Replace 'myPackage' with an actual instance of a Package
System.Console.WriteLine($"The package type is: {packageType}");