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