Update parameter-binding8.md
parent
40cf51173b
commit
955ebc1c5c
|
@ -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`:
|
||||
|
|
Loading…
Reference in New Issue