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

# Generics Refresher

> Sometimes I just need a reminder

## Methods

```csharp theme={null}
void Method<T>(T param); // basic usage
void Method<T>(T param) where T : BaseClass // narrow down the type of `T`
```

## Class

```csharp theme={null}
class SomeClass<T> where T : BaseClass
```
