string FullName { get; set; }

robot_2Generated
code_blocksInput

Description

Gets the full name of the type described by this TypeDescription instance. The full name includes the namespace and the type name.

Usage

Use the FullName property to retrieve the complete name of the type, including its namespace. This can be useful for logging, debugging, or when you need to display the type's full identifier.

Example

// Example of accessing the FullName property
TypeDescription typeDescription = TypeLibrary.GetTypeDescription(typeof(MyClass));
string fullName = typeDescription.FullName;
// fullName will contain the full name of the type, e.g., "MyNamespace.MyClass"