4 writes to m_localSignature
System.Private.CoreLib (4)
src\System\Reflection\Emit\DynamicILGenerator.cs (4)
857
m_localSignature
= Array.Empty<byte>();
868
internal byte[] LocalSignature =>
m_localSignature
??= SignatureHelper.GetLocalVarSigHelper().InternalGetSignatureArray();
913
m_localSignature
= (localSignature != null) ? (byte[])localSignature.Clone() : Array.Empty<byte>();
923
m_localSignature
= new Span<byte>(localSignature, signatureSize).ToArray();