Update parameter-binding8.md

pull/29950/head
Serj 2023-07-29 01:04:01 +03:00 committed by GitHub
parent 40cf51173b
commit 955ebc1c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -308,8 +308,8 @@ There are two ways to customize parameter binding:
`TryParse` has two APIs:
```csharp
public static bool TryParse(string value, T out result);
public static bool TryParse(string value, IFormatProvider provider, T out result);
public static bool TryParse(string value, out T result);
public static bool TryParse(string value, IFormatProvider provider, out T result);
```
The following code displays `Point: 12.3, 10.1` with the URI `/map?Point=12.3,10.1`: