1 write to Length
System.Reflection.Metadata (1)
System\Reflection\Metadata\Blob.cs (1)
16Length = length;
13 references to Length
Microsoft.CodeAnalysis (2)
PEWriter\ExtendedPEBuilder.cs (1)
97mvidWriter.WriteBytes(0, _mvidSectionFixup.Length);
PEWriter\MetadataWriter.cs (1)
2727reservedGuid.CreateWriter().WriteBytes(0, mvidFixup.Length);
System.Reflection.Metadata (11)
System\Reflection\Metadata\Blob.cs (1)
21public ArraySegment<byte> GetBytes() => new ArraySegment<byte>(Buffer, Start, Length);
System\Reflection\Metadata\BlobWriter.cs (1)
34: this(blob.Buffer, blob.Start, blob.Length)
System\Reflection\Metadata\Ecma335\Encoding\ControlFlowBuilder.cs (4)
303int chunkSize = Math.Min(branch.OperandOffset - srcOffset, srcBlob.Length - srcBlobOffset); 309if (srcBlobOffset == srcBlob.Length) 320srcBlobOffset == srcBlob.Length || 354if (srcBlobOffset == srcBlob.Length - 1)
System\Reflection\PortableExecutable\PEBuilder.cs (5)
437int blobLength = blob.Length; 476internal static Blob GetSuffixBlob(Blob container, Blob blob) => new Blob(container.Buffer, blob.Start + blob.Length, container.Start + container.Length - blob.Start - blob.Length); 504if (signature == null || signature.Length > strongNameSignatureFixup.Length)