Interface ITryParser
Provides the support for parsing values into desired type.
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public interface ITryParser
Methods
TryParse(String, out Object)
Gets a value indicating whether the specified input string can be converted into object or not.
Declaration
bool TryParse(string input, out object value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | input | The specified string. |
| System.Object | value | The converted value. |
Returns
| Type | Description |
|---|---|
| System.Boolean | true if the conversion can takes place; otherwise false. |