Enum MemAccess
Flags indicating whether a memory access modifies or references memory
[Flags]
public enum MemAccess : byte
Fields
None = 0
Access does not reference or modify the value stored in memory
Read = 1
The access may reference the value stored in memory
ReadWrite = Read | Write
The access may modify or reference the value stored in memory
Write = 2
The access may modify the value stored in memory