# FieldList

> Class

Inheritance

* [object](https://learn.microsoft.com/dotnet/api/system.object)
* FieldList

***

Inherited Members

* [Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\))

* [Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\))

* [GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode)

* [GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype)

* [MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

* [ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals)

* [ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)

***

Namespace: UnityEngine.Pixyz.Core

```csharp
[Serializable]
public class FieldList
```

## Constructors

### FieldList(Field\[])

```csharp
public FieldList(Field[] tab)
```

Parameters

| Type                      | Name | Description |
| ------------------------- | ---- | ----------- |
| [Field\[\]](./core_field) | tab  |             |

### FieldList(int)

```csharp
public FieldList(int size)
```

Parameters

| Type                                                       | Name | Description |
| ---------------------------------------------------------- | ---- | ----------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) | size |             |

## Fields

### length

```csharp
public int length { get; }
```

Returns

| Type                                                       | Description |
| ---------------------------------------------------------- | ----------- |
| [int](https://learn.microsoft.com/dotnet/api/system.int32) |             |

### this\[int]

```csharp
public Field this[int index] { get; set; }
```

Returns

| Type                  | Description |
| --------------------- | ----------- |
| [Field](./core_field) |             |

### list

```csharp
public Field[] list
```

Returns

| Type                      | Description |
| ------------------------- | ----------- |
| [Field\[\]](./core_field) |             |

## Operators

### implicit operator Field\[]\(FieldList)

```csharp
public static implicit operator Field[](FieldList o)
```

Parameters

| Type                          | Name | Description |
| ----------------------------- | ---- | ----------- |
| [FieldList](./core_fieldlist) | o    |             |

Returns

| Type                      | Description |
| ------------------------- | ----------- |
| [Field\[\]](./core_field) |             |
