> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Type

> Extension methods for Type from System.Runtime

## Definition

**Assembly:** System.Runtime.dll

**Namespace:** System

## Syntax

```csharp theme={"dark"}
System.Type
```

## Summary

This type is defined in System.Runtime.

## Remarks

See [Microsoft documentation](https://learn.microsoft.com/dotnet/api/system.type) for more information about the rest of the API.

## Methods

### <Icon icon="puzzle-piece" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> SimpleAssemblyQualifiedName <Badge color="green">Extension</Badge>

<Note>Extension method from `System.TypeExtensions`</Note>

Guarantees the creation of an AssemblyQualifiedName that does not contain version or key details. That way when AssemblyVersions are incremented,
the system will still attempt to process the [IMessage](/simplemessagebus/api-reference/CloudNimble/SimpleMessageBus/Core/IMessage).

#### Syntax

```csharp theme={"dark"}
public static string SimpleAssemblyQualifiedName(System.Type type)
```

#### Parameters

| Name   | Type          | Description |
| ------ | ------------- | ----------- |
| `type` | `System.Type` | -           |

#### Returns

Type: `string`
A string containing the *type* name in the format "FullTypeName, SimpleAssemblyName".
