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