Skip to content

Commit

Permalink
Update GetDailyAverageRatesAsync.md
Browse files Browse the repository at this point in the history
  • Loading branch information
maurizuki committed Aug 8, 2023
1 parent 1f21aa8 commit f045bfb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Returns the latest available daily average exchange rates of a list of currencies.

```csharp
public async Task<List<ExchangeRate>> GetDailyAverageRatesAsync(params string[] currencies)
public Task<List<ExchangeRate>> GetDailyAverageRatesAsync(params string[] currencies)
```

| parameter | description |
Expand Down Expand Up @@ -33,7 +33,7 @@ A task that represents the asynchronous operation. The task result contains the
Returns the daily average exchange rates of a list of currencies for a specific date.

```csharp
public async Task<List<ExchangeRate>> GetDailyAverageRatesAsync(DateTime date, params string[] currencies)
public Task<List<ExchangeRate>> GetDailyAverageRatesAsync(DateTime date, params string[] currencies)
```

| parameter | description |
Expand Down Expand Up @@ -64,7 +64,7 @@ A task that represents the asynchronous operation. The task result contains the
Returns the daily average exchange rates of a list of currencies for a specific date range.

```csharp
public async Task<List<ExchangeRate>> GetDailyAverageRatesAsync(DateTime startDate, DateTime endDate,
public Task<List<ExchangeRate>> GetDailyAverageRatesAsync(DateTime startDate, DateTime endDate,
params string[] currencies)
```

Expand Down

0 comments on commit f045bfb

Please sign in to comment.