# StreamSequenceTokenUtilities.Older(StreamSequenceToken, StreamSequenceToken)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.streams.streamsequencetokenutilities/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.streaming/orleans.streams.streamsequencetokenutilities/methods/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Streaming/Core/StreamSequenceToken.cs#L56)

```csharp
public static bool Older(this StreamSequenceToken me, StreamSequenceToken other)
```

Returns `true` if the first token is older than the second token.

### Parameters

- `me` (`StreamSequenceToken`): The first token
- `other` (`StreamSequenceToken`): The second token.

### Returns

`true` if the first token is older than the second token, `false` otherwise.
