The FullName
property provides the complete name of the type described by the TypeDescription
class. This includes the namespace and the type name, offering a fully qualified name that uniquely identifies the type within the application.
The FullName
property provides the complete name of the type described by the TypeDescription
class. This includes the namespace and the type name, offering a fully qualified name that uniquely identifies the type within the application.
Use the FullName
property when you need to retrieve the complete name of a type, including its namespace. This can be particularly useful for logging, debugging, or when performing operations that require the full type name.
// Example of accessing the FullName property TypeDescription typeDescription = TypeLibrary.GetType("MyNamespace.MyClass"); string fullName = typeDescription.FullName; // fullName will contain "MyNamespace.MyClass"