3 writes to m_exceptions
System.Private.CoreLib (3)
src\System\Reflection\Emit\DynamicILGenerator.cs (3)
855
m_exceptions
= Array.Empty<byte>();
897
m_exceptions
= (exceptions != null) ? (byte[])exceptions.Clone() : Array.Empty<byte>();
908
m_exceptions
= new Span<byte>(exceptions, exceptionsSize).ToArray();
1 reference to m_exceptions
System.Private.CoreLib (1)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
869
internal byte[] Exceptions =>
m_exceptions
;