Gets the full name of the type described by this TypeDescription
instance. The full name includes the namespace and the type name.
Gets the full name of the type described by this TypeDescription
instance. The full name includes the namespace and the type name.
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 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"