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