noun
value type
Computing term: a data type whose instances contain the data directly, as opposed to a reference type. Used in programming language contexts.
C#では、intやboolは値型です。
In C#, int and bool are value types.
値型の変数は、メモリ上に直接値を保持します。
Variables of value types hold the value directly in memory.