Method FromJsonList
FromJsonList<T>(string)
Convert a json formated list into a c# list.
Declaration
public static List<T> FromJsonList<T>(string json)
Parameters
Type | Name | Description |
---|---|---|
string | json | json string containing a list of elements. |
Returns
Type | Description |
---|---|
List<T> | The C# list containing elements coming from the json list. |
Type Parameters
Name | Description |
---|---|
T | Type of the element in the list. |