mirror of
https://github.com/AnnulusGames/Alchemy.git
synced 2025-01-23 08:48:24 -05:00
20 lines
328 B
Markdown
20 lines
328 B
Markdown
|
# Read Only Attribute
|
||
|
|
||
|
フィールドを編集不可能にします。
|
||
|
|
||
|
![img](../../../images/img-attribute-read-only.png)
|
||
|
|
||
|
```cs
|
||
|
[ReadOnly]
|
||
|
public float field = 2.5f;
|
||
|
|
||
|
[ReadOnly]
|
||
|
public int[] array = new int[5];
|
||
|
|
||
|
[ReadOnly]
|
||
|
public SampleClass classField;
|
||
|
|
||
|
[ReadOnly]
|
||
|
public SampleClass[] classArray = new SampleClass[3];
|
||
|
```
|