transient
The transient keyword indicates that you don't want a data member to be serialized.
However a transient data member will still have reflection.
Usage
opclass name
{
transient int time;
}
Reflection
transient is added as a flag in a fields metadata.
Serialized Data
the transient keyword indicates that a data member should not be serialized.