# Sandbox.SandboxSystemExtensions.ToSimpleString

## Overload 1

```csharp
static string ToSimpleString(System.Type type, bool includeNamespace = True)
```

Returns this type's name, with nicer formatting for generic types.

### Parameters

- `type` (`System.Type`)
- `includeNamespace` (`bool`), default `True`

### Returns

`string`

## Overload 2

```csharp
static string ToSimpleString(System.Reflection.MemberInfo member, bool includeNamespace = True)
```

Returns this member's name qualified by its declaring type, with nicer formatting for generics.

### Parameters

- `member` (`System.Reflection.MemberInfo`)
- `includeNamespace` (`bool`), default `True`

### Returns

`string`

## Overload 3

```csharp
static string ToSimpleString(System.Delegate deleg, bool includeNamespace = True)
```

Returns a nice name for the given delegate, based on the method that implements it.

### Parameters

- `deleg` (`System.Delegate`)
- `includeNamespace` (`bool`), default `True`

### Returns

`string`

Declared in [Sandbox.SandboxSystemExtensions](/api/Sandbox.SandboxSystemExtensions).
Assembly: `Sandbox.System`.
