Class JsonList<T>
Json list of type T.
Namespace: UnityEngine.Industrial.Forma.WebGLAPI
Syntax
[Serializable]
[Preserve]
public class JsonList<T>
Type Parameters
| Name | Description |
|---|---|
| T | Type |
Constructors
JsonList()
Json list
Declaration
public JsonList()
JsonList(IEnumerable<T>)
Json list
Declaration
public JsonList(IEnumerable<T> content)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<T> | content |
Fields
list
List of type.
Declaration
public List<T> list
Field Value
| Type | Description |
|---|---|
| List<T> |
Methods
Add(T)
Add item ot list of type T.
Declaration
public void Add(T item)
Parameters
| Type | Name | Description |
|---|---|---|
| T | item |